The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
i want below result.
ID | Status | Result |
123 | Fullypaid | Fullypaid |
123 | 1 | Fullypaid |
123 | 2 | Fullypaid |
123 | 3 | Fullypaid |
124 | Fullypaid | Fullypaid |
124 | Fullypaid | Fullypaid |
124 | Fullypaid | Fullypaid |
125 | 1 | Non Fullypaid |
125 | 2 | Non Fullypaid |
125 | 3 | Non Fullypaid |
126 | 1 | Fullypaid |
126 | 2 | Fullypaid |
126 | Fullypaid | Fullypaid |
Solved! Go to Solution.
Hi,
Please check the below picture and the attached pbix file.
It is for creating a calculated column.
Result CC =
IF (
{ "Fullypaid" }
IN SUMMARIZE ( FILTER ( Data, Data[ID] = EARLIER ( Data[ID] ) ), Data[Status] ),
"Fullypaid",
"NON"
)
thank you much, resloved
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:
Thank you so much Sir
Simplest Excel formula is way more than enough to solve such a small question
=IF(COUNTIFS([ID];[@ID];[Status];"Fullypaid");"Fullypaid";"Non Fullypaid")
Expertise = List.Accumulate( {Days as from Today}, {Skills and Knowledge}, (Current, Everyday) => Current & Day.LearnAndPractise(Everyday) ) |
Hi,
Please check the below picture and the attached pbix file.
It is for creating a calculated column.
Result CC =
IF (
{ "Fullypaid" }
IN SUMMARIZE ( FILTER ( Data, Data[ID] = EARLIER ( Data[ID] ) ), Data[Status] ),
"Fullypaid",
"NON"
)
User | Count |
---|---|
26 | |
10 | |
8 | |
6 | |
6 |
User | Count |
---|---|
32 | |
13 | |
10 | |
10 | |
9 |