Publish Dashboard Rules - Publish

Puzzle -
I have a Dashboard with rules to highlight a date field if it equals less than today - Classic view works


When I publish it as the App - the rule does not apply

What did I miss?

May I see what your rule looks like in App Studio?

Also, as someone from Wisconsin, I can’t help but read your Kinetic’s dashboard title as “Wisconsin Soup Date” lol.

Known issue reported in PRB0254401
PRB0254401 - New UI Kinetic Dashboard – Data Rule with condition of Today not working correctly.

But for a workaround you can create a CASE calculated field in the BAQ.
For example:
case
when OrderHed.OrderDate < Constants.Today then ‘1’
else ‘2’
end

Then in your dashboard you can create a rule:
Field: your calculated field
Operator: Equal
Value/Field: Value
Value: 1
Actions: SettingStyle.RowStatus
Status: Warning

2 Likes