This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hello,
I have a Stacked column chart where I sort each item based on its week and I would like to add an automatic marker for todays week.
I have used this formula to create a new column and give each date the correct week.
Week = WEEKNUM('Query1'[MyDateColumn], 21)
I figured I need a line and stacked column chart and apply as the secondary axis this marker but I can't figure how to do this. Any advice?
Solved! Go to Solution.
Try this measure in secondary axis of line and stacked column chart.
This week =
IF(WEEKNUM(MAX(('Query1'[MyDateColumn]),21)=WEEKNUM(TODAY()),SUM('Query1'[Values])+1,BLANK())
then enable the marker,
Thanks,
Arul
put 0 in the measure in place of SUM('Query1'[Values])+1 and then set the secondary axis maximum to 1.
Thanks,
Arul
Try this measure in secondary axis of line and stacked column chart.
This week =
IF(WEEKNUM(MAX(('Query1'[MyDateColumn]),21)=WEEKNUM(TODAY()),SUM('Query1'[Values])+1,BLANK())
then enable the marker,
Thanks,
Arul
Thank you. Exacly what I have been trying to accomplish.
Is there a setting to get the marker at the bottom of the column?
put 0 in the measure in place of SUM('Query1'[Values])+1 and then set the secondary axis maximum to 1.
Thanks,
Arul
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 39 | |
| 28 | |
| 27 | |
| 22 | |
| 18 |
| User | Count |
|---|---|
| 67 | |
| 37 | |
| 32 | |
| 26 | |
| 25 |