Microsoft
Software
Hardware
Network
Question : How do I replace #N/A if it is returned in a formula? (not Vlookup)
I have a formula containing two if statements, but some of the values are #N/A. How do I change that to return text that says "Data Not Available" instead of #N/A?
=IF(A20890>500000,"Channel
III",IF(A20890<=500000,"Ch
annel II"))
Answer : How do I replace #N/A if it is returned in a formula? (not Vlookup)
Or shorter:
=IF(ISNA(A20890),"Data not available",IF(A20890>50000
0,"Channel
III","Channel II"))
Random Solutions
fail to chop 2 GB WMV files
find a folder name vbs
SQL <>
Locked by Admin
Another missing reference question
Compaq presario 6016us ethernet controller driver
Any SQL to LINQ converters out there?
SetFocus when a UserForm Displays
Question on PST's
How to embed C# code in aspx page which is repeater?