Forum Discussion
PowerBIBeginer
2 years agoHelper V
Logic / Dax require
Hi All, Query which I'm asking I'm not sure whether its possible in power bi or not. Let me narrate the exact condition. Col A - Customer name Col B - Line of Business (could be anything) C...
Anonymous
2 years agoNot applicable
Hi PowerBIBeginer ,
I made simple samples and you can check the results below:
Measure = var _t = ADDCOLUMNS('Table',"Same",COUNTAX(FILTER(ALL('Table'),[Type]<>"NLP"&&[Customer Name]=EARLIER([Customer Name])&&[LoB]=EARLIER([LoB])),[Type]))
var _t2 = IF(MAX('Table'[Type])="Excess",1,0)
RETURN IF(MAXX(_t,[Same])<>1&&_t2=1,1,0)
An attachment for your reference. Hope it helps!
Best regards,
Community Support Team_ Scott Chang
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
PowerBIBeginer
2 years agoHelper V
Thank You so much! Very exceited looking at your reply and highly appriciate your time and responce. I highly appriciate You and all the Fabric Community. Sir, I will check this solution and will revert you.