Forum Discussion
Hiding rows
Hi, you can change this by filtering the matrix avoiding blank values on the rows. If this doesn't work, the problem could be on the measure that has a hardcoding formula like "COUNT(Table[column]) + 1". The "+1" can take this effect. You may want to recheck your formula.
Regards,
Thanks for your suggestion ibarrau ....we have tried using filter condition to remove blanks but thats filtering all the values and we are not getting any value ..you can have a look into DAX once
% of REV:=
IF (
AND (
AND (
AND ( [IsFilteredAccount] = FALSE (); [IsFilteredE] = FALSE () );
[IsFilteredGroup] = FALSE ()
);
[IsFilteredCostCenter] = FALSE ()
);
DIVIDE (
[Cumulative Total];
DIVIDE (
CALCULATE (
SUM ( General[Amount] );
FILTER (
ALLEXCEPT ( Account; Account[AccountGroup]; Account[Ecode];
Account[EGroup] = "31"
)
);
1000
)
);
BLANK()
)
Thanks,
Chiranjeevi K.