March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
115 | |
76 | |
57 | |
52 | |
44 |
User | Count |
---|---|
167 | |
117 | |
63 | |
57 | |
50 |