Forum Discussion
Anonymous
6 years agoNot applicable
Compare rows values (Same ID +Same Value)
Hi, I have a table that contains same ID in two different rows. I want see if they have same "Totals" and then If yes, state "TRUE", if not, state "FALSE" I am doing this in powerquery because I'l...
amitchandak
Super User
6 years agoTry
if(isblank(countx(filter(table,table[id]= earlier(table[id]) && table[Total]<> earlier(table[Total]))),"FALSE","TRUE")
Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks. My Recent Blog -
Winner-Topper-on-Map-How-to-Color-States-on-a-Map-with-Winners , HR-Analytics-Active-Employee-Hire-and-Termination-trend
Power-BI-Working-with-Non-Standard-Time-Periods And Comparing-Data-Across-Date-Ranges
Connect on Linkedin
- Anonymous6 years agoNot applicable
thank you amitchandak but I need to do this in "Power Query". With this formula you have me it will work?
- amitchandak6 years ago
Super User
This is DAX column formula for Power BI. You need to check for Power Query.