Bases: Chained divisions in formulas are broken

Steps to reproduce

  1. Create base file
  2. Add new formula property
  3. Put eg. 1000 / 100 / 10 or (1000 / 100) / 10

Did you follow the troubleshooting guide? [Y/N]

Y

Expected result

I would expect this to work

Actual result

Formula property is highlighted by red color meaning there was an error & value in table cell is empty

Environment

SYSTEM INFO:
Obsidian version: v1.9.2
Installer version: v1.8.10
Operating system: Darwin Kernel Version 24.5.0: Tue Apr 22 19:54:26 PDT 2025; root:xnu-11417.121.6~2/RELEASE_ARM64_T8112 24.5.0
Login status: logged in
Language: en
Catalyst license: insider
Insider build toggle: on
Live preview: on
Base theme: adapt to system
Community theme: none
Snippets enabled: 0
Restricted mode: on

RECOMMENDATIONS:
none

thanks, seems specific to divisions .

1 Like

Yeah looks like it’s also not just chaining, same issue (I guess) happens when using if conditions

eg. this works: if(false, 1 / 2, if(true, 30 * 30, 0)) and will print out 900
this does not: if(false, 1 / 2, if(true, 30 / 30, 0)) and cell is empty
and this also works: if(false, 2, if(true, 30 / 30, 0))