Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
george55
Partner - Creator III
Partner - Creator III

Using Date-formula to implement in Filterdatebox

Hi all,

Have this Formular and work fine. Output is a date:

FirstWorkDate(Max(DBDate), 3, $(Holidays))

When I use this in a filterbox to filter Data from Datedimension "DBDate" got an invalid dimension. I guess the problem is this: Subtracting 3 days from the common calendar and not from the DBDate-Datedimension. So in the end the filterbox has a unassociated date which is not part of the DBDate-Datedimension. Could that be? If yes, have anybody a workaround?

thanks for any help.

 

Labels (1)
  • SaaS

1 Solution

Accepted Solutions
george55
Partner - Creator III
Partner - Creator III
Author

Find a workaround which worked fine. So I bypass the issue to associate the filtering with the dimesions by using a ">" and a If. Solution:

=If(DBDate > FirstWorkDate(Max(DBDate), 3, $(Holidays)))

View solution in original post

2 Replies
UserID2626
Partner - Creator III
Partner - Creator III

Can you explain what you want in dimension .

george55
Partner - Creator III
Partner - Creator III
Author

Find a workaround which worked fine. So I bypass the issue to associate the filtering with the dimesions by using a ">" and a If. Solution:

=If(DBDate > FirstWorkDate(Max(DBDate), 3, $(Holidays)))