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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
DataUser
Helper I
Helper I

Exclude Project from evaluation if any version contains "Cancelled"/"Complete"

I've got a file of projects containing current and past information - multiple entries for each project. If any of those versions show up as Status "Cancelled" or "Complete" then I don't want to evaluate that project in a subsequent measure. When I try && Table[Status]<> "Cancelled"  in my measures, it only removes the record that shows as cancelled, but any other records are included in my evaluations. 

 

1st - I don't want to further evaluate any record where a version of the record has "Complete" or "Cancelled".

 

2nd - Ultimately, I want to return the most recent date for those projects, including if it's blank.  Any assistance would be awesome. Thanks

2021-04-21_7-41-13.png

 

 

1 ACCEPTED SOLUTION
v-yetao1-msft
Community Support
Community Support

Hi @DataUser 

Please correct me if I wrongly understood your question.

(1)Create a measure to filter the Project that status <> Complete and Cancelled .

Measure1 =

var _all=SUMMARIZE(FILTER(ALL('Data'),'Data'[Status]="Complete" || 'Data'[Status]="Cancelled"),[Project])

return IF(MAX('Data'[Project]) in _all,1,0)

Then put the measure in filter ,set the value is 0 to return the Project that status <> Complete and Cancelled .

Ailsa-msft_0-1619747399854.png

(2)Create  measures to filter the Project that date is max .

Max date = CALCULATE(MAX(Data[Attestation Date]),ALLEXCEPT(Data,Data[Project]))

Measure 2 = IF(SELECTEDVALUE(Data[Attestation Date])=[Max date],1,0)

Then put the measure in filter ,set the value is 1 to return the Project that date is max .

Ailsa-msft_1-1619747399855.png

The effect is as shown

Ailsa-msft_2-1619747399871.png

I have attached my pbix file, you can refer to it .

 

Best Regards

Community Support Team _ Ailsa Tao

 

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

1 REPLY 1
v-yetao1-msft
Community Support
Community Support

Hi @DataUser 

Please correct me if I wrongly understood your question.

(1)Create a measure to filter the Project that status <> Complete and Cancelled .

Measure1 =

var _all=SUMMARIZE(FILTER(ALL('Data'),'Data'[Status]="Complete" || 'Data'[Status]="Cancelled"),[Project])

return IF(MAX('Data'[Project]) in _all,1,0)

Then put the measure in filter ,set the value is 0 to return the Project that status <> Complete and Cancelled .

Ailsa-msft_0-1619747399854.png

(2)Create  measures to filter the Project that date is max .

Max date = CALCULATE(MAX(Data[Attestation Date]),ALLEXCEPT(Data,Data[Project]))

Measure 2 = IF(SELECTEDVALUE(Data[Attestation Date])=[Max date],1,0)

Then put the measure in filter ,set the value is 1 to return the Project that date is max .

Ailsa-msft_1-1619747399855.png

The effect is as shown

Ailsa-msft_2-1619747399871.png

I have attached my pbix file, you can refer to it .

 

Best Regards

Community Support Team _ Ailsa Tao

 

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

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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