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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

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.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.

View solution in original post

5 REPLIES 5
Anonymous
Not applicable

thank you much, resloved

FreemanZ
Super User
Super User

hi @Anonymous 

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

Anonymous
Not applicable

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.LearnAndPractise(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.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.