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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
Anonymous
Not applicable

Calculated Column

Hello,

I have Calculated column Condition which are having True and False. I need to create custom column/measure which is based on True value if first True value then 1, for next True value then 2, and so on....

 

How can I achieve this?

ConditionValue
FALSE 
FALSE 
FALSE 
FALSE 
TRUE1
TRUE2
TRUE3
TRUE4
TRUE5
TRUE6
TRUE7
1 ACCEPTED SOLUTION
Icey
Community Support
Community Support

Hi @Anonymous ,

 

Just as @amitchandak mentioned, it is needed to add an index column. And then, you can also try to create a column or measure like so:

Column = 
IF (
    'Table'[Condition],
    RANKX ( FILTER ( 'Table', 'Table'[Condition] = TRUE () ), [Index],, ASC, DENSE )
)

rank-c.JPG

 

Measure = 
IF (
    SELECTEDVALUE ( 'Table'[Condition] ),
    RANKX (
        FILTER ( ALLSELECTED ( 'Table' ), 'Table'[Condition] = TRUE () ),
        CALCULATE ( MAX ( 'Table'[Index] ) ),
        ,
        ASC,
        DENSE
    )
)

rank-m.JPG 

 

 

Best Regards,

Icey

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
Icey
Community Support
Community Support

Hi @Anonymous ,

 

Just as @amitchandak mentioned, it is needed to add an index column. And then, you can also try to create a column or measure like so:

Column = 
IF (
    'Table'[Condition],
    RANKX ( FILTER ( 'Table', 'Table'[Condition] = TRUE () ), [Index],, ASC, DENSE )
)

rank-c.JPG

 

Measure = 
IF (
    SELECTEDVALUE ( 'Table'[Condition] ),
    RANKX (
        FILTER ( ALLSELECTED ( 'Table' ), 'Table'[Condition] = TRUE () ),
        CALCULATE ( MAX ( 'Table'[Index] ) ),
        ,
        ASC,
        DENSE
    )
)

rank-m.JPG 

 

 

Best Regards,

Icey

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@Anonymous , You need to add an index column in the power query and then add this formula in DAX

 

a new column

countx(filter(Table, [index] <=earlier([index]) && [Condition] = true()), [index])

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.