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
Anonymous
Not applicable

New Column IF AND

Hi All,

I am trying to make a new column for the following logic;

IF Policy Period <= 90 day and % Turn Over >30% then true else false.

 

 

Measures:

% Turn Over Limit = DIVIDE([Available Limit]/[Annual Limit],0)

Available Limit = SUM(DOCWA_Perpetual_Eligibilities[Available_Annual_Limit])
Annual Limit = SUM(DOCWA_Perpetual_Eligibilities[ANNUAL_LIM])
 
*tried making a measure for policy period using datediff but you can't reference the column 
DOCWA_Perpetual_Eligibilities[DATE_INCEPT] as its not a single value
Column
Period Policy = Date.Day([DATE_INCEPT]) or numbers of days since column, DOCWA_Perpetual_Eligibilities[DATE_INCEPT]
 
If this can be done via a measure then great but I have tried creating a custom column.
 
Attempt 1

IF (

       ([Available_Annual_Limit]/[ANNUAL_LIM])*100) >=30 &&

       Duration.Days(Duration.From(TODAY()-[DATE_INCEPT])

        ) <= 90,

       true, false

    )

Attempt 2

IF(

    AND(

              AND(Duration.Days(Duration.From(TODAY()-[DATE_INCEPT])) <= 90)[Available_Annual_Limit]/[ANNUAL_LIM])*100)                             >=30),

      "True","False"

 

I am stuck and not sure how to approach this so any help would be appreciated.

 
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Try to  create calculated column as below

 

New column=if(

   ([Available_Annual_Limit]/[ANNUAL_LIM])*100) >=30 &&

Datediff(Max(DOCWA_Perpetual_Eligibilities[DATE_INCEPT]),today(),Days) <=90,TRUE,FALSE)

 

Thanks & regards,
Pravin Wattamwar
www.linkedin.com/in/pravin-p-wattamwar

If I resolve your problem Mark it as a solution and give kudos.

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Try to  create calculated column as below

 

New column=if(

   ([Available_Annual_Limit]/[ANNUAL_LIM])*100) >=30 &&

Datediff(Max(DOCWA_Perpetual_Eligibilities[DATE_INCEPT]),today(),Days) <=90,TRUE,FALSE)

 

Thanks & regards,
Pravin Wattamwar
www.linkedin.com/in/pravin-p-wattamwar

If I resolve your problem Mark it as a solution and give kudos.

az38
Community Champion
Community Champion

Hi @Anonymous 

i think you'va got a completely wrong format if-statement for power query. try smth like this

= IF 
   ([Available_Annual_Limit]/[ANNUAL_LIM])*100 >=30 &&
   Duration.Days(Duration.From(DateTime.LocalNow()-[DATE_INCEPT])) <= 90

then true
else false   

 

do not hesitate to give a kudo to useful posts and mark solutions as solution

 


do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn
Anonymous
Not applicable

Thanks for the reply but I am getting a token Literal error.

 

 

token.JPG

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.