How to find quaterly financial year in uipath

Quarterly - FY(financial year) = Aug to Oct ; Nov to Jan ; Feb to Apr ; May to Jul

to find previous Quarter from current,please help me to find solution

Hi @brindhaS

Try this

string year = "Financial Year " + (dateTime.Month >= 4 ? dateTime.Year + 1 : dateTime.Year); 

for quarter

(date.AddMonths(-3).Month + 2)/3;

Where date and datetime are of type DateTime

Thanks,
Prankur

3 Likes

thank you prankur

ive tried it showing error prankur could plz you give in xaml

Geting Erroe kindly give solution in details