Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Please could i ask for your help...
I have created a DB, that is updated daily but i need to pull the figures out just from today??
The FX i created doesn't work:
Count({$<[Created]>*(<[Import Date]={0}>)}[Import Date])
Created is a field/measure
Import Date is the Dimension
I will then need to create a FX for 28 days and 90 days.... (+ there will be other fields added later)
Any Ideas??
=Count({<[Import Date]={"$(='=' & Date(Today(), 'DateFieldFormatHere') )"}>} [Import Date])
=Count({<[Import Date]={"$(='<=' & Date(Today(), 'DateFieldFormatHere') & '>=' & Date(Today()-28, 'DateFieldFormatHere'))"}>} [Import Date])
=Count({<[Import Date]={"$(='<=' & Date(Today(), 'DateFieldFormatHere') & '>=' & Date(Today()-90, 'DateFieldFormatHere'))"}>} [Import Date])
Reference : Count of records Greater than or Equal to today
Thank You
I have tried the formula's but the count is still counting all of entries
The formula used/tried:
Count({<[Import Date]={"$(='=' & Date(Today(), 'DD/MM/YYYY') )"}>} [Import Date])
and
Count({<[Import Date]={"$(='=' & Date(Today()-7, 'DD/MM/YYYY') )"}>} [Import Date])
I have attached a screen shot of the FX
Any ideas?
Sorry, i forgot to mention that i have created a master calendar, Please find a copy attached (just in case it helps)?
stalwar1 expert help needed
What are "Today's entries"?
Hi,
Today's entries will be from the created field
* I have attached an amended script, just for reference *
The only way i can get a correct customer count is:
count({<Project={"Customer Names"}>*(<DaysAgoImport={0}>)}[Import Date])
using
Today() - Floor([Import Date]) as DaysAgoImport,
So all is working now? Are you still need more help here