Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Fiscal year

how to create fiscal year from given date

5 Replies
Not applicable
Author

PrashantSangle

Hi,

Use YearName(DateField,0,4)

Regards,

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
arulsettu
Master III
Master III

LOAD *,

Day(date) as day,

Month(date) as month,

Year(date) as year,

yearname(date,0,4)as FinancialYear;

sasikanth
Master
Master

hi

Try some thing like this

=Year(date('date field','DD/MM/YYYY))

Anonymous
Not applicable
Author

Try this:

[Requesterdate] means your date field in the Data ..

right(year(addmonths([Requester Date],-3)),2) & '-' & right(year(addmonths([Requester Date],-3))+1,2)