You have a little typo in your example of "the trick", but, as is usually the case when I run into these things, you have a misplaced grouping. When I have similar issues I simply go back to my algebra days: "show your work", although in this case it's about developing the function one step at a time:
the template (multiply the number by 100, round the result, then divide all of that by 100):
#### * 100
round(#### * 100)
(round(#### * 100)) / 100
Your working formula follows that pattern:
K Estimated Demand / 1 W
(K Estimated Demand / 1 W) * 100
round((K Estimated Demand / 1 W) * 100)
(round((K Estimated Demand / 1 W) * 100)) / 100
Following that same pattern with the erroneous formula gets you to a working version:
M Estimated Demand - M Connected
(M Estimated Demand - M Connected) * 4
((M Estimated Demand - M Connected) * 4) / 1 W
(((M Estimated Demand - M Connected) * 4) / 1 W) * 1.25
((((M Estimated Demand - M Connected) * 4) / 1 W) * 1.25) * 100
round(((((M Estimated Demand - M Connected) * 4) / 1 W) * 1.25) * 100)
(round(((((M Estimated Demand - M Connected) * 4) / 1 W) * 1.25) * 100)) / 100
-G
Gary J. Orr
(Your Friendly Neighborhood) CADD/BIM/VDC Applications Manager
aka (current and past user names)
GaryOrrMBI (MBI Companies 2014-Present), Gary_J_Orr (GOMO Stuff 2008-Present); OrrG (Forum Studio 2005-2008); Gary J. Orr (LHB Inc 2002-2005); Orr, Gary J. (Gossen Livingston 1997-2002)