Ignoring the value of a formula in a cell.

Royalbloodi

New Member
Joined
Oct 31, 2023
Messages
12
Office Version
  1. 365
Platform
  1. 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.

1704212279686.png


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.

1704212592169.png


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!
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
=IF(C5=0," ",(G4-C5))
is a space
=IF(C5=0,"",(G4-C5))
is a blank
will that work
what are you using that excel sees as a formula ??
 
Upvote 0
So, in another cell, I am trying to use:
Excel Formula:
=MATCH(REPT("z",255),G4:G29)
to determine what cell is the last to have text displayed. However, since there is a formula in that cell, it sees that and spits out "26" as a result. (That is the last cell in the range of G4-G29)
Even though G6 is the last cell with displayed text from a calculation. (First image.)
 
Upvote 0
how about
=MAX((G4:G29<>"")*(ROW(G4:G29)))
 
Upvote 0
workign for me showing row 8 - which has the last value - excluding the formula whic is in row 10

Find Last cell number with text.xlsx
GHIJ
1
2
3
418
52
6
7
8a
9
10 
11
12
Sheet1
Cell Formulas
RangeFormula
J4J4=MAX((G4:G100<>"")*(ROW(G4:G100)))
G10G10=IF(B10="","",1)


MrExcel has a tool called “XL2BB” that lets you post samples of your data and will allow us to copy/paste your sample data into our Excel spreadsheets, saving a lot of time.

You can also test to see if it works ok, in the "Test Here" forum.

OR if you cannot get XL2BB to work, or have restrictions on your PC

then put the sample spreadsheet onto a share

I only tend to goto OneDrive, Dropbox or google docs , as I'm never certain of other random share sites and possible virus.
Please make sure you have a representative data sample and also that the data has been desensitised, remember this site is open to anyone with internet access to see - so any sensitive / personal data should be removed

Make sure you set any share or google to share to everyone
 
Upvote 0
You could use COUNT since that will ignore text values.
 
Upvote 0
Solution
Again, I am trying to make Excel determine which cell is the last cell with any visible Data. All the cells in the range have formulas in them. So essentially I need something that can look at 26 rows of cells in a sheet which have formulas that calculate their value based on another cell, find the last one with a visible result and tell me what cell that is.

View attachment 104243

I've made the formulas visible so you can see them in each cell. Obviously when they're not visible, it would look like this:

View attachment 104244

Let's just use H5 as our cell I'm trying to display a result in...

With the information above, I'd like the result of G6 or 6 to be displayed in Cell H5.

As for using the XL2BB, I would, but I'm on a work computer that won't allow me to use it...

I apologize for the convoluted explanation, as initially stated, I'm having trouble putting to words what I'm trying to do.
 
Upvote 0
COUNT will work with some finagling. I ended up entering the following:
Excel Formula:
=COUNT(G4:G29)+3
In K3

And I put:
Excel Formula:
="G"&K3
In K4
So now, K4 is a cell I can reference to find out the last cell with a value based on the number of cells with a numerical value in it. This will allow me to achieve what I need
1704222404692.png

And with an added number:
1704222459549.png


Thanks!
 
Upvote 0

Forum statistics

Threads
1,215,073
Messages
6,122,975
Members
449,095
Latest member
Mr Hughes

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