Find/Calculate Active Row

sTremper

New Member
Joined
Apr 12, 2014
Messages
12
On my menu I have a "Total" cell for the row I am working on. I don't want to have to update the cell row number each time. How can I have it Vlookup the current active row and calculate it until I move down and start a new row?

tks
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.

JoeMo

MrExcel MVP
Joined
May 26, 2009
Messages
18,144
Office Version
  1. 365
  2. 2010
Platform
  1. Windows
On my menu I have a "Total" cell for the row I am working on. I don't want to have to update the cell row number each time. How can I have it Vlookup the current active row and calculate it until I move down and start a new row?

tks
Code:
Sub CalcCurrentRow()
Rows(Activecell.Row).Calculate
End Sub
 
Upvote 0

sTremper

New Member
Joined
Apr 12, 2014
Messages
12
Have not done much (anything) with VBN. I tried watching some videos but couldn't find anything that was my fit.

I am trying to display the value of the active row's "column AB" to my menu cell R2. The row range I am working with is only rows 3-60 in my "Weekly" worksheet. Once I move down and start a new row I would like it's column AB to be highlighted in my menu R2, and so on.
 
Upvote 0

Forum statistics

Threads
1,195,835
Messages
6,011,872
Members
441,651
Latest member
drewe2000

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
Top