Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
rmuhammad
Creator
Creator

YTD calculation - need help with Set Analysis

Hi

I am trying to calculate YTD using DayNumberOfYear(). My calendar is FY, first month is Oct. In MasterCalendar I have added DayNumberOfYear(DateofSale,10) as DayNbrOfYear now in the set analysis I am trying to check a range if day falls between day 1 and the day number as of Today(). Problem is it is not giving me syntax error and not calculating it properly. For e.g as of today it should add up only day 1-142 it is adding up entire Year.

sum({$<DayNbrOfYear={">=1<=({DayNumberOfYear(today(),10)})"}>} Qty)

Please help. I am new to QV and have not much experience with Set Analysis.

Thanks

Rashid

1 Solution

Accepted Solutions
hic
Former Employee
Former Employee

Try

sum({$<DayNbrOfYear={"<=$(=DayNumberOfYear(today(),10))"}>} Qty)

HIC

View solution in original post

2 Replies
hic
Former Employee
Former Employee

Try

sum({$<DayNbrOfYear={"<=$(=DayNumberOfYear(today(),10))"}>} Qty)

HIC

rmuhammad
Creator
Creator
Author

Thanks Henric! You are the Best