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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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])

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

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

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.