Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.
Hi everyone can somebody help me?
here is my sample data
in my powerbi it already have a ranking
i need a formula that sum of all cpm by social platform and ranking, on the right screenshot the output will be 8872
Solved! Go to Solution.
hi @FreemanZ,
i've filtered the social platform by FB and (all cost/post / all impression) * 1000
total computation of cost/post = 745,200
total computation of impression = 83,994
over all computation (cost:745,200/impression:83,994)*1000 = 8872
my ranking is base on week of update 01/22 = 1, 01/29 = 2
rank 1 on FB will be 8872
mine has the wrong output because i could'n figure out the right formula for this
@reibalboaOMG
Not sure what could go wrong. Even a simple DIVDE/SUM shall do the job unless your data model is more complex that just a single table. In case of mutiple periods or platforms selected you may use the following to obtain correct aggregation.
=
SUMX (
SUMMARIZE ( 'Table', 'Table'[Social Platform], 'Table'[Rank] ),
CALCULATE (
DIVIDE ( SUM ( 'Table'[Cost/Post] ), SUM ( 'Table'[Post Impression] ) ) * 1000
)
)
hi @tamerj1 and @FreemanZ i have a new problem that i encountered
focus yourself to COST EFFICIENCIES
youtube cpm has 5.97k on the first week
on the second week it has 3.70k which has the right color but if the value did'nt move on the next week it should be red.
hi @FreemanZ,
i've filtered the social platform by FB and (all cost/post / all impression) * 1000
total computation of cost/post = 745,200
total computation of impression = 83,994
over all computation (cost:745,200/impression:83,994)*1000 = 8872
my ranking is base on week of update 01/22 = 1, 01/29 = 2
rank 1 on FB will be 8872
mine has the wrong output because i could'n figure out the right formula for this
@reibalboaOMG
Not sure what could go wrong. Even a simple DIVDE/SUM shall do the job unless your data model is more complex that just a single table. In case of mutiple periods or platforms selected you may use the following to obtain correct aggregation.
=
SUMX (
SUMMARIZE ( 'Table', 'Table'[Social Platform], 'Table'[Rank] ),
CALCULATE (
DIVIDE ( SUM ( 'Table'[Cost/Post] ), SUM ( 'Table'[Post Impression] ) ) * 1000
)
)
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
17 | |
16 | |
13 | |
9 | |
9 |