Consulting

Results 1 to 7 of 7

Thread: Return Column / Row name of active cell

  1. #1
    VBAX Mentor Sir Babydum GBE's Avatar
    Joined
    Mar 2005
    Location
    Cardiff, UK
    Posts
    499
    Location

    Return Column / Row name of active cell

    Hi, using formulae, how can I return the value of column A in the currently active row, and also how do I return value of Row 3 in currently active column

    Explanation. I can't use VBA because this has to work on Excel for iPad. So I have table headers in Row 3, and descriptions in Column A. The user will select a value from a drop-down list lets say for example its in Cell Q10. His selection causes excel to recalculate. So in B1 i need to return the value found in $A10, and in C1 I need to return the value found in Q$3

    Thanks
    Have a profound problem? Need a ridiculous solution? Post a question in Babydum's forum

  2. #2
    VBAX Mentor
    Joined
    Jul 2012
    Posts
    398
    Location
    Attach please a sample file with notes and desired output

  3. #3
    VBAX Mentor Sir Babydum GBE's Avatar
    Joined
    Mar 2005
    Location
    Cardiff, UK
    Posts
    499
    Location

    Example file

    OK,, here's a dummy sheet showing the help i need.

    If it cant be done with formulas please let me know so that I can scrap this functionality in my workbook

    Thx!
    Attached Files Attached Files
    Last edited by Sir Babydum GBE; 08-15-2014 at 04:43 AM. Reason: replaced jpeg with xlsx
    Have a profound problem? Need a ridiculous solution? Post a question in Babydum's forum

  4. #4
    VBAX Mentor
    Joined
    Jul 2012
    Posts
    398
    Location
    check attached
    Attached Files Attached Files

  5. #5
    VBAX Expert shrivallabha's Avatar
    Joined
    Jan 2010
    Location
    Mumbai
    Posts
    750
    Location
    You could try following.
    In B1:
    =INDEX(A1:A24,CELL("row"))
    In C1:
    =INDEX(A3:G3,1,CELL("col"))
    Regards,
    --------------------------------------------------------------------------------------------------------
    Shrivallabha
    --------------------------------------------------------------------------------------------------------
    Using Excel 2016 in Home / 2010 in Office
    --------------------------------------------------------------------------------------------------------

  6. #6
    VBAX Mentor Sir Babydum GBE's Avatar
    Joined
    Mar 2005
    Location
    Cardiff, UK
    Posts
    499
    Location
    Thanks Patel

    a man of few words, but your answer works perfectly. Thank you.

    "my dad was a man of few words. One day, he said to me: 'Son...' " — Stuart Francis
    Have a profound problem? Need a ridiculous solution? Post a question in Babydum's forum

  7. #7
    Moderator VBAX Wizard Aussiebear's Avatar
    Joined
    Dec 2005
    Location
    Queensland
    Posts
    5,083
    Location
    Quote Originally Posted by Sir Babydum GBE View Post
    "my dad was a man of few words. One day, he said to me: 'Son...' " — Stuart Francis
    I can't wait for the movie to come out.....
    Remember To Do the Following....
    Use [Code].... [/Code] tags when posting code to the thread.
    Mark your thread as Solved if satisfied by using the Thread Tools options.
    If posting the same issue to another forum please show the link

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •