Forum Discussion
CrossJoin for blank dates vs defined dates
Hello to everyone
I need help since I managed to crossjoin in a new table all values that are defined for specific dates.
However, i've got the standard prices for the non-campaign times (Which have blank dates):
Create a CALENDAR() table that covers the entire range of dates you want to report against, then use GENERATESERIES() for the dates where you have events, and finally EXCEPT() the two tables which will give you all the dates that do NOT have events.
4 Replies
- lbendlin
Super User
Is 'Table1 2' a typo?
Are you familiar with the EXCEPT() and INTERSECT() functions?
- AnonymousNot applicable
Hello,
It's just a typo, yes. should just read Table2.
Yeah. I am familiar with those, however not managing to apply them to this here.
Thanks.
- lbendlin
Super User
Create a CALENDAR() table that covers the entire range of dates you want to report against, then use GENERATESERIES() for the dates where you have events, and finally EXCEPT() the two tables which will give you all the dates that do NOT have events.
- AnonymousNot applicable
Thanks Mate!