Forum Discussion
Ramon625
Dec 09, 2021Copper Contributor
How to replace value with blank
Hi,
value error appears and this is the string of the cell where it appears in:
=IF(C7=Sheet2!$J$3;2;IF(C7=Sheet2!$J$2;5;""))+[@[Entry date]]
But I want to have it blank if it shows value. How can I do this?
attached also the screen
- Hello,
What about using IFERROR function, IFERROR(IF(C7=Sheet2!$J$3;2;IF(C7=Sheet2!$J$2;5;""))+[@[Entry date]]; "")
Let me know if it helped or detail ur problem,
Best regards
2 Replies
- SergeiBaklanDiamond Contributor
As variant
=IFS( C7 = Sheet2!$J$3; 2 + [@[Entry date]]; C7 = Sheet2!$J$2; 5 + [@[Entry date]]; TRUE, "" )
- melissa95Copper ContributorHello,
What about using IFERROR function, IFERROR(IF(C7=Sheet2!$J$3;2;IF(C7=Sheet2!$J$2;5;""))+[@[Entry date]]; "")
Let me know if it helped or detail ur problem,
Best regards