Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I am sorry but I have tried every way possible to get this to work before coming here.
I have have a data set with rows and I need to divide each row by another row within the set.
Store Has Sales Total Stores Avail Penetration %
John's 74 95 77.89%
How do I write the formula in BI to get the penetration percentage? Everything I write tries to do it by sum or by column.
Solved! Go to Solution.
Penetration%Measure =
VAR _HasSales = SUM(Table[Has Sales] --or measure already created
VAR _TotalStores = SUM(Table[Total Stores Avail]--or measure already created
RETURN
DIVIDE(_HasSales , _TotalStores )
then set format to %
Proud to be a Super User!
Thank you.
I suddenty realized I was overcomplicating the problem.
Penetration%Measure =
VAR _HasSales = SUM(Table[Has Sales] --or measure already created
VAR _TotalStores = SUM(Table[Total Stores Avail]--or measure already created
RETURN
DIVIDE(_HasSales , _TotalStores )
then set format to %
Proud to be a Super User!
Thank you.
I suddenty realized I was overcomplicating the problem.
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
71 | |
38 | |
28 | |
26 |
User | Count |
---|---|
99 | |
88 | |
62 | |
42 | |
39 |