Forum Discussion
If then else statement
- 5 years ago
jalaomar , Create a column like this and use
coalesce([ActualDate],[ScheduleStartDate])
or a measure
maxx(table, coalesce(table[ActualDate],table[ScheduleStartDate]))
- 5 years ago
Hi jalaomar ,
Try the following formula:
Measure = SWITCH( MAX('Table'[BaselinePurpose]), "Contract", MAXX('Table', coalesce('Table'[ActualStart],'Table'[ScheduleStart])), "Current", MAX('Table'[ActualStart]), "ActualSchedule", MAX('Table'[ActualStart]) )If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
WinnizIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- 5 years ago
Hi jalaomar ,
Try the following formula:
Measure_Date = IF( MAX('Table'[Actual Start]) <> BLANK(), MAX('Table'[Actual Start]), MAX('Table'[Schedule Start]) )Actual/Schedule vs Contr = DATEDIFF( MAXX( FILTER('Table','Table'[BaselinePurpose] = "Contract"), _Measure[Measure_Date] ), MAXX( FILTER('Table','Table'[BaselinePurpose] = "ActualSchedule"), '_Measure'[Measure_Date] ), DAY )Actual/Schedule vs Curr = DATEDIFF( MAXX( FILTER('Table','Table'[BaselinePurpose] = "Current"), _Measure[Measure_Date] ), MAXX( FILTER('Table','Table'[BaselinePurpose] = "ActualSchedule"), _Measure[Measure_Date] ), DAY )If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
Hi jalaomar ,
Try the following formula:
Measure_Date =
IF(
MAX('Table'[Actual Start]) <> BLANK(),
MAX('Table'[Actual Start]),
MAX('Table'[Schedule Start])
)Actual/Schedule vs Contr =
DATEDIFF(
MAXX(
FILTER('Table','Table'[BaselinePurpose] = "Contract"),
_Measure[Measure_Date]
),
MAXX(
FILTER('Table','Table'[BaselinePurpose] = "ActualSchedule"),
'_Measure'[Measure_Date]
),
DAY
)Actual/Schedule vs Curr =
DATEDIFF(
MAXX(
FILTER('Table','Table'[BaselinePurpose] = "Current"),
_Measure[Measure_Date]
),
MAXX(
FILTER('Table','Table'[BaselinePurpose] = "ActualSchedule"),
_Measure[Measure_Date]
),
DAY
)
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz