Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi,
I'm new in Power Bi and I want to update my newly created report with info from a sharepoint list every week.
Now I have to modify the date manually in my report but I would like te do this automaticlly.
My report as 4 columns
BookingDate, Event_Location, Registred_Status and Measure_By_Desks
Can I achieve this with Power BI.
Solved! Go to Solution.
Hi @Obeybe ,
According to my understand, you want to keep data always current week,right?
You could add a WeekNum column then use the following formula:
WeekNum =
WEEKNUM ( 'Table5'[Date], 2 )
Measure =
IF ( MAX ( 'Table5'[WeekNum] ) = WEEKNUM ( TODAY (), 2 ), 1, 0 )
Then apply the measure to the filter pane:
When your data has updated, you need to click "Refresh", then it will change automaticlly:
Did I answer your question ? Please mark my reply as solution. Thank you very much.
If not, please upload some insensitive data samples and expected output.
Best Regards,
Eyelyn Qin
Hi @Obeybe ,
According to my understand, you want to keep data always current week,right?
You could add a WeekNum column then use the following formula:
WeekNum =
WEEKNUM ( 'Table5'[Date], 2 )
Measure =
IF ( MAX ( 'Table5'[WeekNum] ) = WEEKNUM ( TODAY (), 2 ), 1, 0 )
Then apply the measure to the filter pane:
When your data has updated, you need to click "Refresh", then it will change automaticlly:
Did I answer your question ? Please mark my reply as solution. Thank you very much.
If not, please upload some insensitive data samples and expected output.
Best Regards,
Eyelyn Qin
@Obeybe , Have column like these in you date table
Start Week = 'Date'[Date]+-1*WEEKDAY('Date'[Date],2)+1
End Week = 'Date'[Date]+ 7-1*WEEKDAY('Date'[Date],2)
Week Type = Switch( True(),
[start week]<=Today() && [end date]>=Today(),"This Week" ,
[start week]<=Today()-7 && [end date]>=Today()-7,"Last Week" ,
[Week Name]
)
use week type as slicer and filter that on this week
Also refer :https://www.youtube.com/watch?v=hfn05preQYA
Hey @Obeybe !
What do you mean by when you say modify date manually? Can you please share more details, and if possible with a sample data along with expected output?
Cheers!
Vivek
Blog: vivran.in/my-blog
Connect on LinkedIn
Follow on Twitter
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
58 | |
55 | |
55 | |
37 | |
30 |
User | Count |
---|---|
78 | |
64 | |
45 | |
43 | |
40 |