Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!

Reply
Pricey79
Helper V
Helper V

Help with Day by Day entries please

Hello, I was hoping someone could help please. 

 

I have a SharePoint list as my datasource. Using a powerapp every day, a new set of answers should be sent to the SharePoint list against a list of 12 pre populated questions. 

I need to know if these questions got answered on a daily basis, so on a friday evening I should be able to see 

Monday : Yes

Tuesday: Yes

Wednesday : No 

for example

 

And then they reset , ready for the next week

 

I'm really struggling with this, but it feels like it should be fairly simple!?

 

Any help would be greatly appreciated

 

Thank you in advance

1 REPLY 1
v-chenwuz-msft
Community Support
Community Support

Hi @Pricey79,

 

Maybe you can try this code to do this.

 

Measure =
VAR _S =
    SWITCH (
        SELECTEDVALUE ( 'weekday'[week] ),
        "Sun", 0,
        "Mon", 1,
        "Tue", 2,
        "Wed", 3,
        "Thu", 4,
        "Fri", 5,
        6
    )
VAR _Date =
    TODAY ()
        - ( WEEKDAY ( TODAY (), 2 ) - _S )
VAR _filter =
    IF ( _Date > TODAY (), BLANK (), _Date )
RETURN
    IF (
        CALCULATE ( MAX ( 'Table'[if] ), 'Table'[Date] = _filter ) = 1,
        "yes",
        IF ( NOT ( ISBLANK ( _filter ) ), "no" )
    )

 

 

Pbix in the end you can refer.

Best Regards

Community Support Team _ chenwu zhu

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

Vote for your favorite vizzies from the Power BI World Championship submissions!

Sticker Challenge 2026 Carousel

Join our Community Sticker Challenge 2026

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

January Power BI Update Carousel

Power BI Monthly Update - January 2026

Check out the January 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.