web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Apps
Answered

Drop Down Question

(0) ShareShare
ReportReport
Posted on by 187
Hello All - I have a sitiation with Fiscal Year  & Quarter
Based on the date, I would like the drop down value to be the specific Fiscal Year and Quarter. For eg, November 1st is FY 25 Quarter 2. In case the user accesses the form on January 1st 2025, it should show FY 25 Q3. Whats the best way to handle this. 
 
Data Sources is SP List.
Categories:
I have the same question (0)
  • Verified answer
    mmbr1606 Profile Picture
    14,615 Super User 2026 Season 1 on at
    hey
     
     
     
    can u try this? its just an idea you might need to tweak that it fits your needs:
    
    Set(varToday, Today());
    
    
    Set(varFiscalYear, 
        If(
            Month(varToday) >= 10, 
            Year(varToday) + 1, 
            Year(varToday)
        )
    );
    
    Set(varFiscalQuarter, 
        Switch(
            Month(varToday),
            10, 1, 11, 1, 12, 1,   // Q1: Oct-Dec
            1, 2, 2, 2, 3, 2,      // Q2: Jan-Mar
            4, 3, 5, 3, 6, 3,      // Q3: Apr-Jun
            7, 4, 8, 4, 9, 4       // Q4: Jul-Sep
        )
    );
    
    
    Set(varFiscalDisplay, "FY " & Text(varFiscalYear) & " Q" & Text(varFiscalQuarter));
    
    in the default of your dropdown set varFiscalDisplay
     
    if it helped please mark as verified answer,
     
     
    cheers

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 529 Most Valuable Professional

#2
Haque Profile Picture

Haque 230

#3
Kalathiya Profile Picture

Kalathiya 217 Super User 2026 Season 1

Last 30 days Overall leaderboard