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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
NewbieJono
Post Patron
Post Patron

if statement within another formula

Could someone help, i wish to add a statement within this dax (Please see bold section) to check Min date if another coloumn labeled 'FACT - ISG'[Counted]) <> "Not Counted"
 
also is anyone able to format this in the correct format for DAX formulas, mine is starting to get messy, i am not sure how best lay things out.
 
Working Days Old =
CALCULATE(
COUNTROWS('DIM - Date Table'),
DATESBETWEEN('DIM - Date Table'[Date], Min('FACT - ISG'[Date of Receipt]), max('FACT - ISG'[Date])),
'DIM - Date Table'[IsWorkingDay] = 1,
'DIM - Date Table'[IsHoliday] = 0,
all ('DIM - Date Table'))
1 ACCEPTED SOLUTION
bcdobbs
Super User
Super User

Try:

Working Days Old =
VAR StartDate =
    CALCULATE (
        MIN ( 'FACT - ISG'[Date of Receipt] ),
        'FACT - ISG'[Counted] <> "Not Counted"
    )
VAR EndDate =
    MAX ( 'FACT - ISG'[Date] )
VAR Result =
    CALCULATE (
        COUNTROWS ( 'DIM - Date Table' ),
        DATESBETWEEN ( 'DIM - Date Table'[Date], StartDate, EndDate ),
        'DIM - Date Table'[IsWorkingDay] = 1,
        'DIM - Date Table'[IsHoliday] = 0
    )
RETURN
    Result

 

I've removed all ('DIM - Date Table')). If you mark the table as a date table that is taken care of for you.

 

Formatting wise download DAX Studio and it'll do it for you or use DAX Formatter by SQLBI



Ben Dobbs

LinkedIn | Twitter | Blog

Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!

View solution in original post

1 REPLY 1
bcdobbs
Super User
Super User

Try:

Working Days Old =
VAR StartDate =
    CALCULATE (
        MIN ( 'FACT - ISG'[Date of Receipt] ),
        'FACT - ISG'[Counted] <> "Not Counted"
    )
VAR EndDate =
    MAX ( 'FACT - ISG'[Date] )
VAR Result =
    CALCULATE (
        COUNTROWS ( 'DIM - Date Table' ),
        DATESBETWEEN ( 'DIM - Date Table'[Date], StartDate, EndDate ),
        'DIM - Date Table'[IsWorkingDay] = 1,
        'DIM - Date Table'[IsHoliday] = 0
    )
RETURN
    Result

 

I've removed all ('DIM - Date Table')). If you mark the table as a date table that is taken care of for you.

 

Formatting wise download DAX Studio and it'll do it for you or use DAX Formatter by SQLBI



Ben Dobbs

LinkedIn | Twitter | Blog

Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

April Fabric Community Update

Fabric Community Update - April 2024

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