Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hello Everyone !
I am quite new to power bi and im facing an issue when im creating new measure , this is my DAX formula
Solved! Go to Solution.
Is this what you meant?
Completion =
IF(
AND(
VALUES(Master[Start Date].[Date]) <= VALUES(Master[Jan-24]),
VALUES(Master[End Date].[Date]) >= VALUES(Master[Jan-24])
),
TRUE,
FALSE
)
When using AND(), a comma is used to separate the 2 clauses instead of &&. It could also be written as:
Completion =
IF(
VALUES(Master[Start Date].[Date]) <= VALUES(Master[Jan-24])
&& VALUES(Master[End Date].[Date]) >= VALUES(Master[Jan-24]),
TRUE,
FALSE
)
(I didn't try to fix anything else.)
Hi @butterscotch
Adding to @gmsamborn
Use simple && in DAX
Completion =
IF(
VALUES(Master[Start Date].[Date]) <= VALUES(Master[Jan-24]) &&
VALUES(Master[End Date].[Date]) >= VALUES(Master[Jan-24]),
TRUE,
FALSE
)
Proud to be a Super User! | |
Thank you guys, it helps to resolve the issue by adding VALUES()
Hi @butterscotch
Adding to @gmsamborn
Use simple && in DAX
Completion =
IF(
VALUES(Master[Start Date].[Date]) <= VALUES(Master[Jan-24]) &&
VALUES(Master[End Date].[Date]) >= VALUES(Master[Jan-24]),
TRUE,
FALSE
)
Proud to be a Super User! | |
Is this what you meant?
Completion =
IF(
AND(
VALUES(Master[Start Date].[Date]) <= VALUES(Master[Jan-24]),
VALUES(Master[End Date].[Date]) >= VALUES(Master[Jan-24])
),
TRUE,
FALSE
)
When using AND(), a comma is used to separate the 2 clauses instead of &&. It could also be written as:
Completion =
IF(
VALUES(Master[Start Date].[Date]) <= VALUES(Master[Jan-24])
&& VALUES(Master[End Date].[Date]) >= VALUES(Master[Jan-24]),
TRUE,
FALSE
)
(I didn't try to fix anything else.)