Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Does anyone know how i can show data divided in months in the last 3 years? It only lets me show either the total by year, or the total by month, but i want the information to disaggregate the information.
thanks
Solved! Go to Solution.
Hi @dberrocal,
>> It only lets me show either the total by year, or the total by month, but i want the information to disaggregate the information.
Based to your description, you want to divided the month and year data like below ?
If it is a case, you can use matrix to achieve your requirement.
Create the matrix visual, drag date to “Rows” field, drag the amount to “Values” field.
Remove the quarter and day.
You can also use ankitpatira’s point of view, add the year/month column, drag the year/month column and value column to table visual:
Regards,
Xiaoxin Sheng
Hi @dberrocal,
>> It only lets me show either the total by year, or the total by month, but i want the information to disaggregate the information.
Based to your description, you want to divided the month and year data like below ?
If it is a case, you can use matrix to achieve your requirement.
Create the matrix visual, drag date to “Rows” field, drag the amount to “Values” field.
Remove the quarter and day.
You can also use ankitpatira’s point of view, add the year/month column, drag the year/month column and value column to table visual:
Regards,
Xiaoxin Sheng
@dberrocal You can do that in power bi desktop by splitting out date field in your dataset using DAX. So create calculated column that gives you value in 'JAN-15' format for each row of date you have in your dataset and then use that column for category (x-axis) in your visual.
= 'TABLENAME'[COLUMNNAME].[Month] & "-" & YEAR('TABLENAME'[COLUMNNAME])
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.