Forum Discussion
AllanBerces
Post Prodigy
2 years agoMeasure to Change Marker Color
Hi good day, Pls can anyone help me to create the measure on how can i change the color of my marker. I have table below, what i want is turn the marker in to RED if the date already due and the Rem...
- 2 years ago
Instead of measure try creating calculated column
MarkerColor =IF(ISBLANK([Remarks]) && [DueDate] < TODAY(),"Red",IF(NOT(ISBLANK([Remarks])),"Green","DefaultColor" // You can set a default color if needed))
AllanBerces
Post Prodigy
2 years agobhanu_gautam
Super User
2 years agoInstead of measure try creating calculated column
MarkerColor =
IF(
ISBLANK([Remarks]) && [DueDate] < TODAY(),
"Red",
IF(
NOT(ISBLANK([Remarks])),
"Green",
"DefaultColor" // You can set a default color if needed
)
)