Would like to utilize Row Number after using Formula with =@CELL("address", INDEX(..........)))

RapchikM

Board Regular
Joined
Oct 5, 2020
Messages
88
Office Version
  1. 2021
Platform
  1. Windows
Hello

I've used the Following formulas

Value of D7 = "12345678" is in Sheet2

in cell T7 of Sheet2 I've used below Formula
=@CELL("address",INDEX(Sheet_XLS2023!$D$15:$D$179,MATCH($D7&"*",Sheet_XLS2023!$D$15:$D$179,0)))

RESULT: '[Filename.xlsx]Sheet_XLS2023'!$D$51

ie D51 OF Sheet_XLS2023'!

using above formula
Therefore for value "12345678" i got cell address as D51 of Sheet_XLS2023'!

Then in cell U7 of Sheet 2 I type
=RIGHT(T7, LEN(T7)-31) to get as $D$51

Question 1 :
How do i remove $ sign and get as D51

Question 2:
How can i use Row 51 in different Formulas

For EG I would Like to use =VLOOKUP appropriately
ie to get the value of F51 from Sheet_XLS2023'!

Thanks
RapchikM
 
Last edited:

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
To get the value of F51 you can use
Excel Formula:
=INDEX(Sheet_XLS2023!$F$15:$F$179,MATCH($D7&"*",Sheet_XLS2023!$D$15:$D$179,0))
 
Upvote 0
Solution
To get the value of F51 you can use
Excel Formula:
=INDEX(Sheet_XLS2023!$F$15:$F$179,MATCH($D7&"*",Sheet_XLS2023!$D$15:$D$179,0))

Thank you sir for your prompt Reply.

How do i remove $ sign as per #1 of this thread

Thanks
RapchikM
 
Upvote 0
Why are you trying to get the address when there is no need, you can simply use the formula I posted to get the value from column F?
 
Upvote 0
Why are you trying to get the address when there is no need, you can simply use the formula I posted to get the value from column F?
Thank You Sir,

But For Future if one wants to remove $ Sign. Thats Why I asked

RapchikM
 
Upvote 0
You can use the substitute function for that.
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,102
Messages
6,123,097
Members
449,096
Latest member
provoking

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top