• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

argument 2 in IF

jutu

Member
The below dax query throws the error "argument '2' in IF function is required. But quite new to dax and not sure where the error is (which is the argument 2 in IF?) and if you can help please;

Is Created = IF(
ISBLANK('Model Metrics'[Create Measure],
BLANK(),
IF(
[Create Status] >= 1,
1,
0 ) )
 
ISBLANK('Model Metrics'[Create Measure],
I think you might need an extra closing parenthesis:
Is Created = IF(
ISBLANK('Model Metrics'[Create Measure]),
BLANK(),
IF(
[Create Status] >= 1,
1,
0 ) )
 
Back
Top