• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

Little excel help

MBigD011

n00b
Joined
Sep 10, 2005
Messages
54
If I have one cell set equal to another, ie cell A10 contains "=A5" is there a way to not have the "0" show up in A10 when A5 is empty?

Thank
 
In your scenario, you would use for A10:
=if(A5<>"",A5,"")

Thus, if A5 is not blank, it'll show what's in A5, otherwise, it'll stay blank.
 
Back
Top