Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How to create from an additionally flag-field to exclude such future data which are forecast-data by selecting (and locking) this field ?
Not sure what you are asking ?
Do you want to exclude data after today ?
yes exact
In the script maybe something like :
If ( [YourDate} > today() , 'Yes' , 'No' ) as [Future Flag] ,
Within your load (best within the master-calendar) create a new field which is checking your date-field with:
...
if(date < today(), dual('past', 0), dual('future', 1)) as DateFutureFlag,
....
- Marcus
how can I use this flag in the filter ?
Create a List Box on the Flag Field and select the value you are after.
Like Bill mentioned use a simple listbox and if you hide them (directly or on a hiden sheet) and lock them those selection couldn't be easy deselect from any other user-selection.
- Marcus
I didn't figure out , I am newbie with QV
Do you know how to create a List Box ?