Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
vividarinda
Helper I
Helper I

Flag true false condition

Hi,

 

I want to set the new column to "flag" if there is a same value in one column with condition unitno : right(unitno,6), then flagging in one of the data. And other unitno still are flagging as 1

 

Example:

 

UnitNo           | Flag

16DT0789      | 0

77DT0789      | 1

16DT9160      | 1

16DT9254      | 1

77DT0541      | 1

16DT0541      | 0

77DT9167      | 1

77DT7643      | 1

16DT9206     | 1

1 ACCEPTED SOLUTION
ryan_mayu
Super User
Super User

@vividarinda 

pls try this

Column = if(MINX(FILTER('Table',RIGHT('Table'[UnitNo   ],6)=right(EARLIER('Table'[UnitNo   ]),6)&&'Table'[UnitNo   ]>EARLIER('Table'[UnitNo   ])),'Table'[UnitNo   ])<>"" && MAXX(FILTER('Table',RIGHT('Table'[UnitNo   ],6)=right(EARLIER('Table'[UnitNo   ]),6)&&'Table'[UnitNo   ]<EARLIER('Table'[UnitNo   ])),'Table'[UnitNo   ])="",0,1)

11.PNG

pls see the attachment below





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

4 REPLIES 4
zenisekd
Super User
Super User

I would follow this post: https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-RANKX-index-COUNT-OCCURAN... only adjusting it by the right 6 function 🙂 can be done either in Power Query or Dax... 

ryan_mayu
Super User
Super User

@vividarinda 

pls try this

Column = if(MINX(FILTER('Table',RIGHT('Table'[UnitNo   ],6)=right(EARLIER('Table'[UnitNo   ]),6)&&'Table'[UnitNo   ]>EARLIER('Table'[UnitNo   ])),'Table'[UnitNo   ])<>"" && MAXX(FILTER('Table',RIGHT('Table'[UnitNo   ],6)=right(EARLIER('Table'[UnitNo   ]),6)&&'Table'[UnitNo   ]<EARLIER('Table'[UnitNo   ])),'Table'[UnitNo   ])="",0,1)

11.PNG

pls see the attachment below





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Hi @ryan_mayu ,

Thank you very much for your help very helpful. This worked !!

you are welcome





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.