March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello-
I am new to Power BI and I have been tasked to create a dashboard where I am comparing traffic counts by day between last year and this year to show the impact of COVID-19. I would like to do this in a stacked bar chart, but I cannot get it to work. The data is an excel dump from an SQL database (I'm working remotely so I can't access the database itself) in the form of monthly files. I've appended these into both yearly queries and a single query with all the data from both years. What is the best way to approach this? Thanks!
Mike
Solved! Go to Solution.
Hi @mikegee78 ,
You may create a calendar table first, then create relationship with your fact data table on date field.
Calendar=CALENDARAUTO
Then create measure like DAX below.
Current year count=SUM(Table[Traffic count])
Last year count= CALCULATE(SUM(Table[Traffic count]),DATEADD(Calendar[Date],-1,Year))
Best Regards,
Amy
Community Support Team _ Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @mikegee78 ,
You may create a calendar table first, then create relationship with your fact data table on date field.
Calendar=CALENDARAUTO
Then create measure like DAX below.
Current year count=SUM(Table[Traffic count])
Last year count= CALCULATE(SUM(Table[Traffic count]),DATEADD(Calendar[Date],-1,Year))
Best Regards,
Amy
Community Support Team _ Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
You could create a measure for
[Traffic] = sum(Traffic[Traffic Counts])
and
[Traffic Last Year] = calculate([Traffic],dateadd(Traffic[Date],-1,year))
Make sure that [Date] is a date or date/time column (or from a calendar table that's marked as a date table).
Respectfully,
Zoe Douglas (DataZoe)
Follow me on LinkedIn at https://www.linkedin.com/in/zoedouglas-data
See my reports and blog at https://www.datazoepowerbi.com/
Hi @mikegee78
You can use SAMEPERIODLASTYEAR DAX function please see the link below.
https://docs.microsoft.com/en-us/dax/sameperiodlastyear-function-dax
@mikegee78 , You can create a year behind the measure
example
Year behind Sales = CALCULATE(SUM(Sales[Sales Amount]),dateadd('Date'[Date],-1,Year))
Or Same weekday last year
Week Year behind Sales = CALCULATE(SUM(Sales[Sales Amount]),dateadd('Date'[Date],-364,DAY))
and can compare with your date
User | Count |
---|---|
117 | |
77 | |
58 | |
52 | |
46 |
User | Count |
---|---|
171 | |
117 | |
63 | |
57 | |
51 |