Show Current Week of the Year in Card

Hi All,

I have a weekly sales dashboard where I want to display the current week of the year in a visual so if someone is on this page they know which is the current week of the year. Is there an easy way to display it in the visual and it changes for every new week?

Thanks!

HI @Nupur

You can add a measure and use below DAX.

Current Week = WEEKNUM(TODAY())

image

Thanks! That works :slight_smile: