Forum Discussion
Anonymous
9 years agoNot applicable
Dashboard Logic and Question
Looking for some suggestions here with a dashboard I am creating for my business team. I am trying to assign a value in a column based on a date. Simply put is something is sold <= the 15th of t...
- 9 years ago
In Power BI, a dashboard is an object in the power bi service. This sounds like you need a new column in one of your tables. You can create a calculated column using an if statement. The syntax is almost the same as excel
=if(day(table[date]) <=15,"Early","Late")
MattAllington
9 years agoCommunity Champion
In Power BI, a dashboard is an object in the power bi service. This sounds like you need a new column in one of your tables. You can create a calculated column using an if statement. The syntax is almost the same as excel
=if(day(table[date]) <=15,"Early","Late")
Anonymous
9 years agoNot applicable