Floor function: Google Sheets vs PHP
I made a simple weight tracking app in PHP and am comparing it with what I used to have in Google Sheets, and I’m noticing a difference in a number coming back from "floor". In Google Sheets: =FLOOR(84.614285714286 / ((179 / 100) ^ 2)) results in: "26" in PHP 8: floor($currentWeight / (($user[‘height’] / 100)^2));… Read More Floor function: Google Sheets vs PHP