Hide #VALUE! - Is it possible?

CasperA

Board Regular
Joined
Jun 8, 2015
Messages
55
Is it possible in hide the display of the characters #VALUE! in those cells that do not yet display the result of a formula?

CA
 
Hi,

If you're nesting formulas, you need to remove the =

so your formula =(A1) nested with the iferror function becomes =IFERROR(A1,"")
 
Upvote 0

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
Hi jorismoerings, the OP isn't in reality using the formula =A1, they are using the UDF Reconfig (see post #15 but the UDF should actually look like the UDF below (at least it should if it doesn't turn out to be better to change the UDF when the OP actually states what causes the error/s))

Code:
Function Reconfig(S As String)
    Dim V As Variant, i As Long
    V = Split(S, " ")
    For i = 1 To UBound(V) + 1
        Reconfig = Reconfig & i & "• " & V(i - 1) & " "
    Next i
End Function
 
Upvote 0
Hi jorismoerings, the OP isn't in reality using the formula =A1, they are using the UDF Reconfig (see post #15 but the UDF should actually look like the UDF below (at least it should if it doesn't turn out to be better to change the UDF when the OP actually states what causes the error/s))

Code:
Function Reconfig(S As String)
    Dim V As Variant, i As Long
    V = Split(S, " ")
    For i = 1 To UBound(V) + 1
        Reconfig = Reconfig & i & "• " & V(i - 1) & " "
    Next i
End Function

I will try and find the spreadsheet where the error occurred so that I can state more precisely what caused the error.

CasperA
 
Upvote 0

Forum statistics

Threads
1,214,918
Messages
6,122,241
Members
449,075
Latest member
staticfluids

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