- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Table that filters less than, equal and greater by 1 from another table
I have a Dates Table with FiscalYear column set from 2020 to 2060
The measure CurrentFiscalYear =
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Thank you for helping....yes we do Fiscal Year
I used:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

try this :
FiscalYearTest =
VAR currentfiscalyear = year(today())
RETURN
Filter (
distinct (Dates[FiscalYear] ) ,
Dates[FiscalYear] < = currentfiscalyear
)
let me know if it works for you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Thanks, this does not return the Year after the Current Fiscal Year. I am looking for the table to return 2020-2025. Basically Current Fiscal Year +1 year
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

try this :
FiscalYearTest =
CurrentFiscalYear = IF(MONTH(TODAY()) >= 7, YEAR(TODAY()) + 2, YEAR(TODAY()) +1 )
RETURN
Filter (
distinct (Dates[FiscalYear] ) ,
Dates[FiscalYear] < = currentfiscalyear
)
so if i understand correctly,
if im in month >=7, then my current fiscalyear should be 2025, and thus i need to get data from 2020 till 2026
however,
if the month <=7 then my currentfiscal year is 2024 and thus i need to get the data from 2020 till 2025.
am i right ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Thank you for helping....yes we do Fiscal Year
I used:

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
06-06-2024 10:15 AM | |||
Anonymous
| 04-12-2023 07:53 AM | ||
03-04-2024 09:57 AM | |||
10-20-2023 11:50 AM | |||
06-14-2024 09:34 AM |
User | Count |
---|---|
123 | |
104 | |
84 | |
49 | |
46 |