Getting Err:507, but every bracket pairs up

Novice here. Or nitwit… Ha!

Brackets are paired up, but 507.

=100000[0.005(1+0.005)^360] / [(1+0.005)^360–1]

Help!

Thank You,
Daniel

Version: 25.2.5.2 (X86_64) / LibreOffice Community
Build ID: 03d19516eb2e1dd5d4ccd751a0d6f35f35e08022
CPU threads: 8; OS: Windows 10 X86_64 (10.0 build 19045); UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL threaded

[] are not brackets used in Calc formulas - use (). Also, there is no implicit multiplications - use * explicitly between 100000 and the following parenthesis (and elsewhere). And also: is not a minus - use -.

Made those 3 corrections to this:

=100000*(0.005*(1+0.005)^360) / ((1+0.005)^360-1)

Problems solved!

Thankyou Mike!