Forum Discussion
ak77
2 years agoPost Patron
Resources Exceeded Issue on Condition Check
Hi all,
I need to hide the rows where all the column cell values are zero. so i used the below DAX where i am checking if round of each meausre value is 0 and using visual filter to filter for all valuesw which gives 0
if ((round([MTD-V1],2)= 0 && round([YTD-V1],2)= 0 && round([QTD-V1],2)= 0 && round([FYTD-V1],2)=0 &&
round([Qtr-V1],2)=0 && round([Qtr (T-1)-V1],2)=0 && round([Qtr (T-2)-V1],2)=0 &&round([Qtr (T-2)-V1],2)=0),0,1)
This works in desktop but when published gives Resources Exceeded Issue . Any other way if this conditional check can be achieved? Please help
5 Replies
- ak77Post Patron
i am checking for zero here... not blank .. if all column cell values are zero.. hide it .. is there a easiest way pls let me know