Forum Discussion
gladies123
4 years agoHelper I
Reg: hide a value
Hi,
Kindly help me to hide a value(1) which is highlighted i have created si.no using following dax(measure)
si.no= RANKX(ALLSELECTED(cxsurrender[V_RET_RESULT]),CALCULATE(SUM(cxsurrender[Index])),,DESC,Dense) that's why 1 is displaying please help me to hide that 1.
thanks,
gladis
- Anonymous4 years ago
Check whether you use right field in HASONEVALUE function. It should work.
6 Replies
- AnonymousNot applicable
gladies123 Try this:
si.no= IF(HASONEVALUE(cxsurrender[your_crossed_out_field]),RANKX(ALLSELECTED(cxsurrender[V_RET_RESULT]),CALCULATE(SUM(cxsurrender[Index])),,DESC,Dense),BLANK())
- gladies123Helper I
Thanks but it returned blank
- AnonymousNot applicable
Right, for total it returns blank. What should it return?
- AnonymousNot applicable
Hi gladies123 ,
Let's take an example:
Measure = IF(ISINSCOPE('Table'[Column1]),1,BLANK())So you measure may be:
Measure = IF(ISINSCOPE('Table'[the ROW field in matrix]),[your rank measure],BLANK())Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.