Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Evaluate a Google Sheets math expression with formula

I have some strings inside Google Sheets, containing simple arithmetic expressions:

enter image description here

Is there a way to evaluate these expressions without the need for writing a script? (i.e. formula only)

like image 292
Robert Androsz Avatar asked Feb 06 '26 22:02

Robert Androsz


1 Answers

try:

=INDEX(QUERY(; "select "&A6); 2)

enter image description here

like image 110
player0 Avatar answered Feb 12 '26 06:02

player0