A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Answer: Why this function, CHAR(), is not working ?
My objective was to include a function that would allow a formula to place either:
- a number from zero to 100 into a cell, or
- leave the cell blank.
By combining ideas I got from four replies to my question, I managed to get something useful.
The final result that works is below:
= IFERROR(IF(Y2<0,"",VLOOKUP(Y2,$M$41:$N$53,2,TRUE)),"")
It's worth mentioning that a space is not an empty cell. I see a lot of people 'deleting' the value in a cell by entering a space. The result is not an empty cell so formulae referring to it won't work as expected.