Share via

How to I find what cell a formula is pulling a value from?

Anonymous
2025-03-25T13:51:18+00:00

I have a large excel file with the function =MINIFS(J4:J31086,I4:I31086,"Lowest 16 L Minimum:"). It's been returning me a value of 3 which I know is wrong, But I can't simple ctrl+F for 3 because of the sheer numbers of threes.

Is there a simple way to know which exact cell the value is being from?

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

Answer accepted by question author

  1. Anonymous
    2025-03-25T13:57:33+00:00

    Try this formula to get the exact cell.

    ="J"&MATCH(1,(I:I="Lowest 16 L Minimum:")*(J:J=3),0)

    If you have mutiple cell with min value.

    ="J"&FILTER(SEQUENCE(31090),(I1:I31090="Lowest 16 L Minimum:")*(J1:J31090=3))

    1 person found this answer helpful.
    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Anonymous
    2025-03-25T14:06:02+00:00

    That worked like a charm. I'm amazed at how good some people are at excel. Thank you!

    0 comments No comments