Share via

Excel capture data in cell

Anonymous
2022-01-01T08:19:10+00:00

Dear MS,

I want to capture individual data from a cell (A2:A10), (D2:D10)

like the file as following link, please check the Yellow highlighted part is a result I want to capture

https://1drv.ms/x/s!AkQ_OBT745Y5my6fq106F6OGqP4U?e=7LhRuc

thx, Johnnie

Microsoft 365 and Office | Excel | For business | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

6 answers

Sort by: Most helpful
  1. Andreas Killer 144.1K Reputation points Volunteer Moderator
    2022-01-01T15:58:21+00:00

    Hi Johnnie,

    possible solution:

    B2: =--LEFT(A2,SEARCH(" ",A2)-1)

    drag down.

    To split a text it is easier to determine the delimiter positions in helper columns
    E2: =SEARCH("x",D2)
    F2: =SEARCH("x",D2,E2+1)

    Now we can parse the values very easy:
    G2: =--LEFT(D2,E2-1)
    H2: =--MID(D2,E2+1,F2-E2-1)
    I2: =--RIGHT(D2,LEN(D2)-F2)

    J2: =G2*H2*I2

    drag down.

    BTW, the -- in front of the formulas is necessary to convert the text into numbers.

    Andreas.

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments
  2. Andreas Killer 144.1K Reputation points Volunteer Moderator
    2022-01-01T09:51:17+00:00

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments
  3. Anonymous
    2022-01-01T23:59:09+00:00

    Excel 365 Pro Plus with Power Pivot and Power Query.

    Split columns invisibly with PQ.

    Added extras to look like a business app,

    using PivotTable, PivotChart and Slicer.

    No formulas, no VBA macro.

    https://www.mediafire.com/file/vjsabdrcjb4k50j/01_01_22.xlsx/file

    https://www.mediafire.com/file/unk302g3z7bs6xw/01_01_22.pdf/file

    Was this answer helpful?

    0 comments No comments
  4. Anonymous
    2022-01-01T13:06:53+00:00

    Thx, Andreas

    it is work, but

    can I setup the formula in Column B and E:H instead of everytime delimit date..?? pls adv

    B.rgds

    Johnnnie

    Was this answer helpful?

    0 comments No comments
  5. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more