The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hello,
I have data which have only Period column, e.g 2024-P01, 2024-P02...., no sequential date. My dashboard has Period slicer. I have tired both below options to calculate YTD though I am getting only selected period amounts. What is that I am missing, how can I fix it? Appreciate your expertise.
Solved! Go to Solution.
Hi @VMP ,
Thanks for the reply from aduguid / Greg_Deckler .
Create a calculated column in each of the two tables, convert the text format Period to an integer format Period for easy comparison.
Period Num =
VALUE(LEFT('Inventory'[Period], 4)) * 100 + VALUE(RIGHT('Inventory'[Period], 2))
Period No =
VALUE(LEFT('Period A'[Period], 4)) * 100 + VALUE(RIGHT('Period A'[Period], 2))
The two tables need to be disconnected.
Create a measure to calculate YTD:
Cost YTD =
VAR SelectedNo = SELECTEDVALUE('Period A'[Period No])
RETURN
CALCULATE(
SUM(Inventory[Total Cost]),
FILTER(
ALL('Inventory'[Period Num]),
'Inventory'[Period Num] <= SelectedNo
)
)
The final page visual effect is as shown below:
If you have any other questions please feel free to contact me.
The pbix file is attached.
Best Regards,
Yang
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
Hi @VMP ,
Thanks for the reply from aduguid / Greg_Deckler .
Create a calculated column in each of the two tables, convert the text format Period to an integer format Period for easy comparison.
Period Num =
VALUE(LEFT('Inventory'[Period], 4)) * 100 + VALUE(RIGHT('Inventory'[Period], 2))
Period No =
VALUE(LEFT('Period A'[Period], 4)) * 100 + VALUE(RIGHT('Period A'[Period], 2))
The two tables need to be disconnected.
Create a measure to calculate YTD:
Cost YTD =
VAR SelectedNo = SELECTEDVALUE('Period A'[Period No])
RETURN
CALCULATE(
SUM(Inventory[Total Cost]),
FILTER(
ALL('Inventory'[Period Num]),
'Inventory'[Period Num] <= SelectedNo
)
)
The final page visual effect is as shown below:
If you have any other questions please feel free to contact me.
The pbix file is attached.
Best Regards,
Yang
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
@VMP Done a lot with this. You may find this helpful - https://community.powerbi.com/t5/Community-Blog/To-bleep-With-Time-Intelligence/ba-p/1260000
Also, see if my Time Intelligence the Hard Way provides a different way of accomplishing what you are going for.
https://community.powerbi.com/t5/Quick-Measures-Gallery/Time-Intelligence-quot-The-Hard-Way-quot-TIT...
Also this:
(1) Better Year to Date Total - Microsoft Fabric Community
I'd create a new column with a formatted period number, as in "202401". You can do that in Power Query by duplicating the column and then replacing the string "-P" to "". Then update your filters to use the new period number column.