Forum Discussion
KatPL
3 years agoFrequent Visitor
Populate value for every date using a measure, not a column
Hello, The source data for my model is Analysis Services - SQL server. The model is connected with live connection, which means IT IS NOT possible for me to create columns. I can only create measu...
johnt75
Super User
3 years agoIf Date is filtering budget then you can probably use a simple MAX('Budget'[Budget value]) and rely on the date from the visual to filter it appropriately.
KatPL
3 years agoFrequent Visitor
Unfoturantely this also does not work - on a chart this measure still gives me Budget value only for 1st of the month as a one blue point, instead of a blue line with the same value for every day:
BUD Value = MAX(Budget[Budget Value])
- johnt753 years ago
Super User
Try
BUD Value = CALCULATE ( MAX ( 'Budget table'[BUD Value] ), STARTOFMONTH ( 'Date'[Date] ) )