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
Ravinder1
Frequent Visitor

i need help

i want below result.

IDStatusResult
123FullypaidFullypaid
1231Fullypaid
1232Fullypaid
1233Fullypaid
124FullypaidFullypaid
124FullypaidFullypaid
124FullypaidFullypaid
1251Non Fullypaid
1252Non Fullypaid
1253Non Fullypaid
1261Fullypaid
1262Fullypaid
126FullypaidFullypaid
1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi,

Please check the below picture and the attached pbix file.

It is for creating a calculated column.

Jihwan_Kim_0-1682133118668.png

 

Result CC =
IF (
    { "Fullypaid" }
        IN SUMMARIZE ( FILTER ( Data, Data[ID] = EARLIER ( Data[ID] ) ), Data[Status] ),
    "Fullypaid",
    "NON"
)

 

 

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


View solution in original post

5 REPLIES 5
Ravinder1
Frequent Visitor

thank you much, resloved

FreemanZ
Super User
Super User

hi @Ravinder1 

you may also try like:

 

Column = 
VAR _list = 
    CALCULATETABLE(
        VALUES(data[Status]),
        ALLEXCEPT(data, data[ID])
    )
RETURN
IF(
    "Fullypaid" IN _list,
    "Fullypaid",
    "Not Fullypaid"
)

or 

Column2 = 
VAR _list = 
    CALCULATETABLE(
        VALUES(data[Status]),
        data[ID]=EARLIER(data[ID])
    )
RETURN
IF(
    "Fullypaid" IN _list,
    "Fullypaid",
    "Not Fullypaid"
)

 

it worked like:

FreemanZ_0-1682170103006.png

Ravinder1
Frequent Visitor

Thank you so much Sir

ThxAlot
Super User
Super User

Simplest Excel formula is way more than enough to solve such a small question

 

=IF(COUNTIFS([ID];[@ID];[Status];"Fullypaid");"Fullypaid";"Non Fullypaid")

 

ThxAlot_0-1682140835940.png



Expertise = List.Accumulate(


        {Days as from Today},


        {Skills and Knowledge},


        (Current, Everyday) => Current & Day.LeanAndPractise(Everyday)


)



Jihwan_Kim
Super User
Super User

Hi,

Please check the below picture and the attached pbix file.

It is for creating a calculated column.

Jihwan_Kim_0-1682133118668.png

 

Result CC =
IF (
    { "Fullypaid" }
        IN SUMMARIZE ( FILTER ( Data, Data[ID] = EARLIER ( Data[ID] ) ), Data[Status] ),
    "Fullypaid",
    "NON"
)

 

 

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

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

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

Top Solution Authors