Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 52
Default Removing ''VALUES''

Hi Again (where would I be without the help from this board)

I have a forumula in a cell as follows


=IF(ISNA(VLOOKUP($A77,'Personal NFI
2010'!$1:$65536,14,FALSE)),"",VLOOKUP($A77,'Person al NFI
2010'!$1:$65536,14,FALSE))

working absolutely perfectly and if there is no number to find the cell
stays blank.

I then have the following formula that links to the one above

=IF(ISBLANK(K76),"",(K76/K57))

Unfortunately if the cell is blank it's returning #VALUE!

I need to get this removed as I can't sum the total of the rows if there are
VALUES in there

Again thanks for any help

Mark
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default Removing ''VALUES''

Try

=IF(N(K76),(K76/K57),"")

Similarly if you want to check whether K57 holds anything check for that
within a OR()

--
Jacob


"Mark D" wrote:

Hi Again (where would I be without the help from this board)

I have a forumula in a cell as follows


=IF(ISNA(VLOOKUP($A77,'Personal NFI
2010'!$1:$65536,14,FALSE)),"",VLOOKUP($A77,'Person al NFI
2010'!$1:$65536,14,FALSE))

working absolutely perfectly and if there is no number to find the cell
stays blank.

I then have the following formula that links to the one above

=IF(ISBLANK(K76),"",(K76/K57))

Unfortunately if the cell is blank it's returning #VALUE!

I need to get this removed as I can't sum the total of the rows if there are
VALUES in there

Again thanks for any help

Mark

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 52
Default Removing ''VALUES''

Thank you Jacob

Lastly I know have the following formula that links to the one that you
helped me make blank

=(SUMPRODUCT((K98<70%)*($B117=1),K77*'Base
Data'!$I$31))+(SUMPRODUCT((K98<70%)*($B117=2),K77* 'Base
Data'!$I$32))+(SUMPRODUCT((K98<70%)*($B117=3),K77* 'Base
Data'!$I$33))+(SUMPRODUCT((K98<70%)*($B117=4),K77* 'Base
Data'!$I$34))+(SUMPRODUCT((K98<70%)*($B117=5),K77* 'Base Data'!$I$35))

Can I add the same suggestion you gave me just now to make the cell blank.
Again I am getting VALUE where there is no data (In this case K98 is blank).
I don't know where I would necessarily add it

Thanks for your help

"Jacob Skaria" wrote:

Try

=IF(N(K76),(K76/K57),"")

Similarly if you want to check whether K57 holds anything check for that
within a OR()

--
Jacob


"Mark D" wrote:

Hi Again (where would I be without the help from this board)

I have a forumula in a cell as follows


=IF(ISNA(VLOOKUP($A77,'Personal NFI
2010'!$1:$65536,14,FALSE)),"",VLOOKUP($A77,'Person al NFI
2010'!$1:$65536,14,FALSE))

working absolutely perfectly and if there is no number to find the cell
stays blank.

I then have the following formula that links to the one above

=IF(ISBLANK(K76),"",(K76/K57))

Unfortunately if the cell is blank it's returning #VALUE!

I need to get this removed as I can't sum the total of the rows if there are
VALUES in there

Again thanks for any help

Mark

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default Removing ''VALUES''

Try this instead

=IF(AND(K98<"",K98<70%,B117=1,B117<=5),
K77*INDEX('Base Data'!I31:I35,B117),"")


--
Jacob


"Mark D" wrote:

Thank you Jacob

Lastly I know have the following formula that links to the one that you
helped me make blank

=(SUMPRODUCT((K98<70%)*($B117=1),K77*'Base
Data'!$I$31))+(SUMPRODUCT((K98<70%)*($B117=2),K77* 'Base
Data'!$I$32))+(SUMPRODUCT((K98<70%)*($B117=3),K77* 'Base
Data'!$I$33))+(SUMPRODUCT((K98<70%)*($B117=4),K77* 'Base
Data'!$I$34))+(SUMPRODUCT((K98<70%)*($B117=5),K77* 'Base Data'!$I$35))

Can I add the same suggestion you gave me just now to make the cell blank.
Again I am getting VALUE where there is no data (In this case K98 is blank).
I don't know where I would necessarily add it

Thanks for your help

"Jacob Skaria" wrote:

Try

=IF(N(K76),(K76/K57),"")

Similarly if you want to check whether K57 holds anything check for that
within a OR()

--
Jacob


"Mark D" wrote:

Hi Again (where would I be without the help from this board)

I have a forumula in a cell as follows


=IF(ISNA(VLOOKUP($A77,'Personal NFI
2010'!$1:$65536,14,FALSE)),"",VLOOKUP($A77,'Person al NFI
2010'!$1:$65536,14,FALSE))

working absolutely perfectly and if there is no number to find the cell
stays blank.

I then have the following formula that links to the one above

=IF(ISBLANK(K76),"",(K76/K57))

Unfortunately if the cell is blank it's returning #VALUE!

I need to get this removed as I can't sum the total of the rows if there are
VALUES in there

Again thanks for any help

Mark

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 117
Default Removing ''VALUES''

=IF(K76="","",K76/K57)

"Mark D" wrote:

Hi Again (where would I be without the help from this board)

I have a forumula in a cell as follows


=IF(ISNA(VLOOKUP($A77,'Personal NFI
2010'!$1:$65536,14,FALSE)),"",VLOOKUP($A77,'Person al NFI
2010'!$1:$65536,14,FALSE))

working absolutely perfectly and if there is no number to find the cell
stays blank.

I then have the following formula that links to the one above

=IF(ISBLANK(K76),"",(K76/K57))

Unfortunately if the cell is blank it's returning #VALUE!

I need to get this removed as I can't sum the total of the rows if there are
VALUES in there

Again thanks for any help

Mark



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 47
Default Removing ''VALUES''

On Mar 25, 7:28*am, Mark D wrote:
Hi Again (where would I be without the help from this board)

I have a forumula in a cell as follows

=IF(ISNA(VLOOKUP($A77,'Personal NFI
2010'!$1:$65536,14,FALSE)),"",VLOOKUP($A77,'Person al NFI
2010'!$1:$65536,14,FALSE))

working absolutely perfectly and if there is no number to find the cell
stays blank.

I then have the following formula that links to the one above

=IF(ISBLANK(K76),"",(K76/K57))

Unfortunately if the cell is blank it's returning #VALUE!

I need to get this removed as I can't sum the total of the rows if there are
VALUES in there

Again thanks for any help

Mark


You could also replace the "" in your formula with a 0, i.e., a value.
Tou can't divide a text by a value hence the error.
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Removing Duplicate Values James Excel Discussion (Misc queries) 1 January 7th 10 01:14 PM
Removing Placeholder Values Mtabaruka Excel Discussion (Misc queries) 2 March 29th 07 01:54 PM
Removing zero values from a spreadsheet. Red1014 Excel Discussion (Misc queries) 3 February 1st 06 05:01 PM
Removing 0 or none 0 values from graphs Mike Punko Charts and Charting in Excel 2 September 9th 05 10:14 PM
Removing Hidden But Keep Values Wayne Excel Discussion (Misc queries) 2 December 11th 04 02:05 AM


All times are GMT +1. The time now is 07:03 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"