• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Formula to Auto populate the fields in the table

Hi,
I am working on the attached sheet and looking for a formula or solution which would auto populate the values in the table once I select the Carrier Global description.


I have attached the sheet for reference.

Appreciate you help on this.
 

Attachments

Thank you for the attached sheet.

However, please can you onfirm what does (3 & 7) stands for in the address formula that you have used. Which rows do the exactly refer to.

=MATCH(C$27,INDIRECT(ADDRESS(3,MATCH($B30,$1:$1,0)-1) & ":" & ADDRESS(7,MATCH($B30,$1:$1,0)-1)),0)
 

Attachments

  • Screenshot.PNG
    Screenshot.PNG
    33.7 KB · Views: 1

Rameez Sarang

You can use the ADDRESS function to obtain the address of a cell in a worksheet, given specified row and column numbers.
For example, ADDRESS(2,3) returns $C$2. As another example, ADDRESS(77,300) returns $KN$77.

Syntax

ADDRESS(row_num, column_num, [abs_num], [a1], [sheet_text])
  • row_num Required. A numeric value that specifies the row number to use in the cell reference.
  • column_num Required. A numeric value that specifies the column number to use in the cell reference.
 
Back
Top