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
5 Replies
- Zubair_MuhammadCommunity Champion
Anonymous
May be
Key = CONCATENATE ( VALUES ( Bounce[Account No ] ), FORMAT ( VALUES ( Bounce[MonthYr] ), "DD-MM-YYYY" ) )- AnonymousNot applicable
Dear Zubair,
Thanks for ur reply.
I am getting an error
- Zubair_MuhammadCommunity Champion
Anonymous
Sorry I thought its a Meausre.
What are you tyring to acheive?
Your formula looks good