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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
romovaro
Responsive Resident
Responsive Resident

Conditional Formula different fields.

Hi

 

I need your help regarding one formula. 

I have the table below.

 

THe rule is

 

If the same Project manager/Coordinator is managing both CUIDs (Normal one and the same one ending with "i") then, column Bothmanager1pm = Yes, otherwise No

Project Scope can vary but if contains strings "WFN" or "FNW" then Yes. (THe issue is that only the rows with the CUIDs  ending with i contains than info

 

Name Project Manager/Coordinator Project Scope CUID CUID_i BothManager1PM Include WFN or iHCM Scope for FastTrack  
Client A Pau Gasol   ACOUIL1 ACOUIL1 Yes No NO Currently with my formula, the field is "no" and I also want to add the "yes"
Client A Pau Gasol …WFN… ACOUIL1i ACOUIL1 Yes Yes Yes  
                 
Client B Pau Gasol   LAX LAX No No No  
Client B Lebron James …WFN… LAXi LAX No Yes No  

 

then I have the formula:

 

Scope FastTrack = IF('PV Cel Report'[BothManaged1PM]="Yes"&&'PV Cel Report'[Include WFN or iHCM]="Yes", "In Scope for Fast Track", "2-cycle")
 
THe problem is that I also want to include the other CUID (the one NOT ending with "i") in the conditional formula and I am struggling to add that one also in the dax formula.
 
Any help?
 
thanks
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @romovaro ,

 

According to your description, here are my steps you can follow as a solution.

(1)  My test data is the same as yours.

(2) We can create a  calculated column.

Scope FastTrack = 
 var _flag=ADDCOLUMNS('PV Cel Report',"flag",IF('PV Cel Report'[BothManager1PM]="Yes"&&'PV Cel Report'[Include WFN or iHCM]="Yes",1, 0))
 var _sumflag=SUMX(FILTER(_flag,[Name]=EARLIER('PV Cel Report'[Name])&&[Project Manager/Coordinator]=EARLIER('PV Cel Report'[Project Manager/Coordinator])),[flag])
 return IF(_sumflag=1,"Yes","No")

(3) Then the result is as follows.

vtangjiemsft_0-1678436433026.png

 

Best Regards,

Neeko Tang

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

2 REPLIES 2
romovaro
Responsive Resident
Responsive Resident

thanks. It works 🙂

Anonymous
Not applicable

Hi @romovaro ,

 

According to your description, here are my steps you can follow as a solution.

(1)  My test data is the same as yours.

(2) We can create a  calculated column.

Scope FastTrack = 
 var _flag=ADDCOLUMNS('PV Cel Report',"flag",IF('PV Cel Report'[BothManager1PM]="Yes"&&'PV Cel Report'[Include WFN or iHCM]="Yes",1, 0))
 var _sumflag=SUMX(FILTER(_flag,[Name]=EARLIER('PV Cel Report'[Name])&&[Project Manager/Coordinator]=EARLIER('PV Cel Report'[Project Manager/Coordinator])),[flag])
 return IF(_sumflag=1,"Yes","No")

(3) Then the result is as follows.

vtangjiemsft_0-1678436433026.png

 

Best Regards,

Neeko Tang

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

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.