Forum Discussion
Dicken
1 year agoPost Prodigy
DAX DATEATABLE Function
Hi, is there a way I can create a small start end date table using this function example of what i want ; dtab = DATATABLE( "start",STRING, "end", STRING, { ...
- 1 year ago
Does not seem to work, yes returns a table, but
CALENDARAUTO does not find it, so not much use.
Richard.
Greg_Deckler
1 year agoCommunity Champion
Dicken I know it looks like it won't work but just do this:
dtab =
DATATABLE(
"start",DATETIME,
"end", DATETIME,
{
{"01/01/2020", "31/12/2020"}
}
)Dicken
1 year agoPost Prodigy
Does not seem to work, yes returns a table, but
CALENDARAUTO does not find it, so not much use.
Richard.