Show values in bottom row when moving up or down through cells

Vladimir Macedonia

New Member
Joined
Feb 7, 2018
Messages
5
Hello,
Anyone knows a formula on how can it shows values in any row bottom when moving up or down through cells with values ?
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
I'm not sure if there is a formula to do this but you can do it with VBA. Let me know if you need to know how.
 
Upvote 0
Hi trmmjens,
The problem is that the customer don't want to use excel with enabled macros
However, you can show me one example
Thank you in advanci
 
Upvote 0
I understand.
Lets say you have values in row 1 to 28 in column A to F you can put this code in your sheet in vba.

Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)

Cells(30, ActiveCell.Column).Value = ActiveCell.Value

End Sub

This will put the selectet value in row 30 of the active column.
You can modify it so it suits your sheet.
 
Upvote 0

Forum statistics

Threads
1,226,694
Messages
6,192,473
Members
453,726
Latest member
JoeH57

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