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
Danniii_
Helper I
Helper I

If statement for a calculated column

Hi,

 

I have a column added into my table which is using a datediff that says how many days between 2 dates ,

Age =datediff('Table1'[Date A],'Table 1'[Date 2],DAY)

 

However I am trying to create something that will say If the above Age column is over 7 days then use 7 (to sort of set 7 as a max value) and if the age is under 7 continue to use the original column, but nothing seems to be working!

 

As the datediff has been created in the table and doesn't appear in the advanced editor I can't do it as a conditional column.

 

One of the conditional columns I have used column doing something similar has something that would translate like this 

 

Test =IF [#"Age"] > 7.001,then "7" else [#"Age"]) 

 

But that didn't work.

 

Any help would be appreciated.

 

Thanks

1 ACCEPTED SOLUTION
az38
Community Champion
Community Champion

Hi @Danniii_ 

if you use DAX calculated column your new column will look like

Test = MIN([Age], 7) 

you also can use this technique

Age = 
var _dd = datediff('Table1'[Date A],'Table 1'[Date 2],DAY)
RETURN 
IF(_dd < 7, 7, _dd)

  


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

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@Danniii_ , for one, is DAX, the second one is M?

Try

Age =
var _1 = datediff('Table1'[Date A],'Table 1'[Date 2],DAY)
return
if(_1>7,7,_1)

az38
Community Champion
Community Champion

Hi @Danniii_ 

if you use DAX calculated column your new column will look like

Test = MIN([Age], 7) 

you also can use this technique

Age = 
var _dd = datediff('Table1'[Date A],'Table 1'[Date 2],DAY)
RETURN 
IF(_dd < 7, 7, _dd)

  


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

The first one seems to have worked perfectly, thank you.

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.