Forum Discussion
inglexjc
2 years agoPost Patron
Code to show case active when there is a future date
I have a report that uses this code to show if a case is active or not: End of Service Date/Open = SWITCH( IF( ISBLANK(PBI_TR_Placements_OOH[SERVICE_END_DATE]),0, PBI_TR_Placements_OOH[SERVIC...
- Anonymous2 years ago
Hi inglexjc ,
Please try to create a new column with below dax formula:
Column = VAR _a = IF ( ISBLANK ( [Date] ), 0, [Date] ) VAR _b = SWITCH ( TRUE (), _a = 0, "Active", NOT ( ISBLANK ( [Date] ) ) && [Date] > TODAY (), "Active", FORMAT ( [Date], "short date" ) ) RETURN _bPlease refer the attached .pbxi file.
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
inglexjc
2 years agoPost Patron
Anonymous Thank you for your response. I do get an error with this though:
Anonymous
2 years agoNot applicable
Hi inglexjc ,
Please try to create a new column with below dax formula:
Column =
VAR _a =
IF ( ISBLANK ( [Date] ), 0, [Date] )
VAR _b =
SWITCH (
TRUE (),
_a = 0, "Active",
NOT ( ISBLANK ( [Date] ) )
&& [Date] > TODAY (), "Active",
FORMAT ( [Date], "short date" )
)
RETURN
_b
Please refer the attached .pbxi file.
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.