The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi Experts
How would you add "bps" to the result of the following formula...
Product Margin bps vs PY1 = DIVIDE([Product Margin (Gross Margin) PY],[Total Revenue PY],0)*10000-DIVIDE([Product Margin GM @ PY Rate BM - Reported],[Net Sales @ PY Rate BM - Reported],0)*10000 &"bps"
The above is my try....
end result should be -30 bps.....
currently the above gives me -29.784.....
Solved! Go to Solution.
@Anonymous Please give a try with this !!
Product Margin bps vs PY1 = CONCATENATE(FORMAT(DIVIDE([Product Margin (Gross Margin) PY],[Total Revenue PY],0)*10000-DIVIDE([Product Margin GM @ PY Rate BM - Reported],[Net Sales @ PY Rate BM - Reported],0)*10000,0)," bps")
Proud to be a PBI Community Champion
@Anonymous Please give a try with this !!
Product Margin bps vs PY1 = CONCATENATE(FORMAT(DIVIDE([Product Margin (Gross Margin) PY],[Total Revenue PY],0)*10000-DIVIDE([Product Margin GM @ PY Rate BM - Reported],[Net Sales @ PY Rate BM - Reported],0)*10000,0)," bps")
Proud to be a PBI Community Champion
many thanks for the excellent feedback
you can use Concatenate function
=CONCATENATE([Product Margin bps vs PY1]," BPS")