Im spending a lot of time trying to find a workaround for this type of formula below:
=IF(COUNTIFS({UNIQUE_NFP_Dashboards data source Range 3}, <>"Complete", {UNIQUE_NFP_Dashboards data source Range 3}, <>"Did not Renew SFC", {UNIQUE_NFP_Dashboards data source Range 1}, "EMEAR-MEA", {UNIQUE_NFP_Dashboards data source Range 2}, "FY22Q3") = 0, "-")
I have used this formula to hide the zeros and to replace them for "-" for design reasons as data is populated in a table in a Dashboard.
Problem is formula is feeding from a data source which I update every week and eventually the formula could be bringing up a value <> than zero. This is the reason why I want to add further statement to make sure that when this happens, the formula will pick up the actual value <> than zero, but so far no luck. I have tried by simply adding [FY22Q3]4, like this below and it brings back error: #CIRCULAR REFERENCE
=IF(COUNTIFS({UNIQUE_NFP_Dashboards data source Range 3}, <>"Complete", {UNIQUE_NFP_Dashboards data source Range 3}, <>"Did not Renew SFC", {UNIQUE_NFP_Dashboards data source Range 1}, "EMEAR-MEA", {UNIQUE_NFP_Dashboards data source Range 2}, "FY22Q3") = 0, "-",[FY22Q3]4)
Any help will be appreciated.
Thanks.