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

DAX

Hi,

I have a requirement where If a project belongs to both Cloud and On Premise  then the training values has to be considered from a Cloud group.Else If a project belongs to only on premise then I have to consider training for the same .

Below is the snapshot where the highlighted group have to be considered for a project to fetch training values.

AS1110_2-1684407625672.png

 

Thanks in Advance

1 ACCEPTED SOLUTION
ValtteriN
Super User
Super User

Hi,

Here is one way to do this:

Measure 46 =
var _pid = MAX('Table (32)'[ProjectID])
var _rows = COUNTROWS(FILTER(ALL('Table (32)'),'Table (32)'[ProjectID]  = _pid))
var _test = IF(_rows=2,1,0)
 var _result= IF(_test=1,CALCULATE(MAX('Table (32)'[Trainings]),FILTER('Table (32)','Table (32)'[Group]="Cloud")),MAX('Table (32)'[Trainings]))
 return
_result

ValtteriN_0-1684410778930.png

I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!

My LinkedIn: https://www.linkedin.com/in/n%C3%A4ttiahov-00001/










Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

1 REPLY 1
ValtteriN
Super User
Super User

Hi,

Here is one way to do this:

Measure 46 =
var _pid = MAX('Table (32)'[ProjectID])
var _rows = COUNTROWS(FILTER(ALL('Table (32)'),'Table (32)'[ProjectID]  = _pid))
var _test = IF(_rows=2,1,0)
 var _result= IF(_test=1,CALCULATE(MAX('Table (32)'[Trainings]),FILTER('Table (32)','Table (32)'[Group]="Cloud")),MAX('Table (32)'[Trainings]))
 return
_result

ValtteriN_0-1684410778930.png

I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!

My LinkedIn: https://www.linkedin.com/in/n%C3%A4ttiahov-00001/










Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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