Forum Discussion
Anonymous
8 years agoNot applicable
Loading Distinct records
Dear all, How to perform Distinct to this formula Key = CONCATENATE(Bounce[Account No ],FORMAT(Bounce[MonthYr],"DD-MM-YYYY"))
- Anonymous8 years ago
Anonymous,
Please use the following DAX.Key = Bounce[AccountNo] & FORMAT (Bounce[MonthYr] , "DD-MM-YYYY" )
Regards,
Lydia
Zubair_Muhammad
8 years agoCommunity Champion
Anonymous
May be
Key =
CONCATENATE (
VALUES ( Bounce[Account No ] ),
FORMAT ( VALUES ( Bounce[MonthYr] ), "DD-MM-YYYY" )
)