You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I am trying to implement top formula bar which goes hand in hand with cell just like google sheets
Steps:
pass data as const data = [
[{ value: "1" }, { value: "4" }],
[{ value: "=SUM(A1+B1)" }, { value: "3" }],
];
it should automatically display sum of 1+4 and on data edit mode should show formula similar to how it works in we provide this formula on cell edit but it
I am updating data on a formula bar input box change where user could pass a formula but I am seeing only formula string if I send data as this formula string.
The text was updated successfully, but these errors were encountered:
Hi,
I am trying to implement top formula bar which goes hand in hand with cell just like google sheets
Steps:
[{ value: "1" }, { value: "4" }],
[{ value: "=SUM(A1+B1)" }, { value: "3" }],
];
The text was updated successfully, but these errors were encountered: