Hi there, first-timer here.
I am working on an RPG charsheet in calculator and i’ve hit a wall.
I’ve got these textboxes/fields (tried both, just in case), where players could view their satus, linked to cells from where calculator can calculate other stats… All working well untill i tried to format a cell which would get a value from a box.
So… 1 box/field is linked to a formated cell B15 (+0;#;#) [+1234;#;#]
Another cell [C15] takes the value inputed in this cell and use it in the following formula:
=IF(B15>5,B15-5)
Say B15 = +3; C15 displays blank as expected //
Say B15 = +6; C15 displays +1 as expected
If i enter value directly into cell, calculations work perfectly. But getting the value from linked textbox/field does not work so well:
Say B15 = 6; C15 displays +1 as expected //
Say B15 = 3; C15 displays: 2 (3 - 5, without “-” signal)
I’ve noticed that when i enter the value from textbox, the cell gets ( 'value ) instead of plain (value). I understand why this would be a problem, hence why i tried using formated fields (which didnt work also, and would not display cell formating). I also noticed that through other textboxes (these ones not linked to formated cells) cells get plain (value). Removing the formating from the cell, however, did not fix the problem.
Is there a way to solve this?