Forum Discussion
Jeffreyjar
3 years agoHelper II
Cannot load data from this visual Calculation error with date table calendar
Cannot load data from this visual Calculation error in the measurement. A table of several values was provided while a single value was expected i get this error when i try to create a ...
Jeffreyjar
3 years agoHelper II
- tamerj13 years agoCommunity Champion
Hi Jeffreyjar
sorry for the late reply.
I don't know how your visual is supposed to look like but if you want to return a dynamic set of dates you have two options: either to concatenate the table that contains these days or to place a filter measure in the filter pane of the visual that filters this visual dynamically to the required set of dates.
following is the solution using first option. If you can provide more details of what are planning to achieve I can help you with option 2dates =
CONCATENATEX (
CALENDAR (
FIRSTDATE ( 'pranking ape'[PAIDDATE] ),
LASTDATE ( 'pranking ape'[PAIDDATE] )
),
'pranking ape'[PAIDDATE],
UNICHAR ( 10 ),
'pranking ape'[PAIDDATE], ASC
)