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
sleekpeek
Regular Visitor

Formula Help Please

I have this formula in excel, i'd like to create the same in PBI.

 

=IF(W3<=-91,"Excluded",IF(W3>90,"Excluded",IF(W3>1,"Influenced",IF(W3<=0,"Sourced","Influenced")))

 

W3 in PBI would be: 'Opp Contact Role'[Days between]

 

how do I achieve that?

 

thanks

4 REPLIES 4
sleekpeek
Regular Visitor

thank you, I will try them both

If one of these work, please mark the answer as solution.
Otherwise, provide more details, such as sample data of 'Opp Contact Role' without sensitive information.

confidentnwrong
Advocate I
Advocate I

You need a way to aggregate 'Opp Contact Role'[Days between].

One way of doing this is :

=
var W3 = MIN('Opp Contact Role'[Days between])
RETURN
IF(W3<=-91
,"Excluded"
 ,IF(W3>90
 ,"Excluded"
  ,IF(W3>1
  ,"Influenced" 
   ,IF(W3<=0
   ,"Sourced"
   ,"Influenced")
  )
 )
)

 

Depending on your data, MIN can be MAX, SUM, AVG,... 

If you're 100% sure that there will be exactly 1 value that will show up using [Days Between], then all of these will return the same one.

Ahmedx
Super User
Super User

pls try this
create a new column

 

Column = 
VAR _t1 ='Opp Contact Role'[Days between]
RETURN
SWITCH( TRUE(),
       _t1<=-91,"Excluded",
       _t1>90,"Excluded",
       _t1>1,"Influenced",
       _t1<=0,"Sourced","Influenced")

 

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.