Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
i want to extract no of days in a quarter. how to do that.
Thanks
Piyush
Hi,
networkdays (QuarterStart(date), QuarterEnd(date))
if you want to remove holidays list, add holidays list as third parameter
Eg:
networkdays (QuarterStart(date), QuarterEnd(date), {,holiday-list})
Cheers!!
Jagan
Hi,
I have have already created Quarter out of date field. i just want to use no of days in a quarter in expression.i am
using quarter as dimension. so , i just want to show no of days in that particular quarter.
Regards,
Piyush
Hi,
Take dimension as Quarter
and Expression as Count (Quarter) or Count (Distinct Date)
Cheers!!
Jagan
Working Days,Actual days?
Add a 1 AS Count to your master calendar and sum it?
Hello,
Do you need to show numeber of possible days regarding selection or simple number of days in Q?
regards
D
Hi,
I have selection on year. i am using quarter as dimension in my table.in expression i have to divide a value by number of days in particular quarter. how to get total no of days in a quarter.
regards,
piyush
try:
QuarterEnd([YourDateField])-QuarterStart([YourDateField])
regards
Darek
If you don't have a calendar with all dates in that quarter as indicated above, you'll just need to create a date in that quarter (if you created your Quarter with an underlying date, just use Quarter), for example for today's quarter:
=ceil(QuarterEnd(today())-QuarterStart(today()))