How to display row and column numbers in excel??

cherhuang098

New Member
Joined
Jan 19, 2014
Messages
1
Hi,

If you have a table array that consists of 13 rows and 7 columns and each of the 91 cells of the array contain a unique numerical value, how can I locate the correct row and column numbers for any given value? Please help thanks!

1234567
11.022.323.624.926.227.528.82
21.172.473.775.076.377.678.97
31.322.623.925.226.527.829.12
41.472.774.075.376.677.979.27
51.622.924.225.526.828.129.42
61.773.074.375.676.978.279.57
71.923.224.525.827.128.429.72
82.073.374.675.977.278.579.87
92.223.524.826.127.428.7210.02
102.373.674.976.277.578.8710.17
112.523.825.126.427.729.0210.32
122.673.975.276.577.879.1710.47
132.824.125.426.728.029.3210.62

<COLGROUP><COL style="WIDTH: 48pt" width=64><COL style="WIDTH: 35pt; mso-width-source: userset; mso-width-alt: 1718" span=7 width=47><TBODY>
</TBODY>
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
if I'm understanding correctly then maybe something like....


Excel 2012
ABCDEFGHIJ
112345674.82
211.022.323.624.926.227.528.82
321.172.473.775.076.377.678.97row 9 column 3
431.322.623.925.226.527.829.12
541.472.774.075.376.677.979.27
651.622.924.225.526.828.129.42
761.773.074.375.676.978.279.57
871.923.224.525.827.128.429.72
982.073.374.675.977.278.579.87
1092.223.524.826.127.428.7210.02
11102.373.674.976.277.578.8710.17
12112.523.825.126.427.729.0210.32
13122.673.975.276.577.879.1710.47
14132.824.125.426.728.029.3210.62

<tbody>
</tbody>
Sheet1

Worksheet Formulas
CellFormula
J3="row "&SUMPRODUCT((B2:H14=J1)*ROW(A2:A14))-1&" "&"column "&SUMPRODUCT((B2:H14=J1)*COLUMN(B1:H1))-1

<tbody>
</tbody>

<tbody>
</tbody>
 
Upvote 0
Try this macro:
Code:
Sub FindAddress()
    Application.ScreenUpdating = False
    Dim foundVal As Range
    Dim searchVal As String
    searchVal = InputBox("Please enter the value to find.")
    Set foundVal = Range("A1:G13").Find(searchVal, LookIn:=xlValues, LookAt:=xlWhole)
    If Not foundVal Is Nothing Then
        MsgBox ("The value " & foundVal & " is in cell " & foundVal.Address(0, 0))
    Else
        MsgBox ("Value not found.")
    End If
    Application.ScreenUpdating = True
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,911
Messages
6,122,194
Members
449,072
Latest member
DW Draft

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