Royalbloodi
New Member
- Joined
- Oct 31, 2023
- Messages
- 16
- Office Version
- 365
- Platform
- Windows
Another one I'm not sure how to explain. So basically, I'm trying to make a spreadsheet that determines the last cell in a column that has a calculated value from a formula.
So, the value in G5 is based on subtracting the previous value in G4 from the Value in C5 using:
Each time you enter a number of hours in Column C, it automatically calculates the remaining hours needed in Column G and tells you the Total number of hours spent in Column F.
Now, I need to reference G5 as being the last cell with data in it, however, since there are formulas in those cells, Excel only sees the value of that formula, whether there is an output calculation or not. How do I define the last row in that column and ignore the value of the formula in that cell?
Thanks!
So, the value in G5 is based on subtracting the previous value in G4 from the Value in C5 using:
Excel Formula:
=IF(C5=0," ",(G4-C5))
Each time you enter a number of hours in Column C, it automatically calculates the remaining hours needed in Column G and tells you the Total number of hours spent in Column F.
Now, I need to reference G5 as being the last cell with data in it, however, since there are formulas in those cells, Excel only sees the value of that formula, whether there is an output calculation or not. How do I define the last row in that column and ignore the value of the formula in that cell?
Thanks!