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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
AdamO
Frequent Visitor

Actual Achieved vs. Monthly target

Hi,

 

I'm trying to make a report which shows how many sites have been visited per time period (not actually a month, but close enough), vs the target for that period.

 

I have a table which shows the frequency target, and a second table which shows all the individual site visit data. What I'm having difficulty is linking the two together to see how many total visits have been made in a period. I've managed to set my coverage so I can tell whether a site has been visited at all, but not to the correct frequency.

 

Below is an example of the data I have:

 

tables.png

 

So for P1, Site 1, I want a Frequency Actual value of 3; for P1, Site 2, a Frequency Actual value of 2; for P1, Site 3, a Frequency Actual value of 1 and so on.

 

Any suggestions?

 

Thanks!

1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

@AdamO

 

Try this Calculated Column

 

Frequency Actual =
CALCULATE (
    COUNTROWS ( VisitData ),
    FILTER (
        VisitData,
        VisitData[Site Code] = Targets[Site Code]
            && VisitData[Visit Period] = Targets[Period]
    )
)

Regards
Zubair

Please try my custom visuals

View solution in original post

2 REPLIES 2
Zubair_Muhammad
Community Champion
Community Champion

@AdamO

 

Try this Calculated Column

 

Frequency Actual =
CALCULATE (
    COUNTROWS ( VisitData ),
    FILTER (
        VisitData,
        VisitData[Site Code] = Targets[Site Code]
            && VisitData[Visit Period] = Targets[Period]
    )
)

Regards
Zubair

Please try my custom visuals

Fantastic, thanks!  I'd tried a lot of different filter types, but the double amphersand was the step I was missing.

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.