Forum Discussion
PaulMac
7 years agoHelper IV
Having Issues With a Simple Calculation
Hello all I am trying to replicate an excel formula in Power BI but I can't seem to do it. I am trying to calculate the Total Calls per 1000 files uploaded. In Excel column B contains Num...
v-jiascu-msft
7 years agoMicrosoft Employee
Hi Paul,
The final solution is based on your data model. But you can try it like below. CALCULATE isn't necessary in your scenario.
Calls per 1000 API Files Uploaded =
MIN ( 'All_Phones'[Offered] ) / MIN ( 'Files Uploaded'[API] )
* 1000
Best Regards,
Dale