2

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)

General Grievance
  • 4,555
  • 31
  • 31
  • 45

1 Answers1

2

try:

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

enter image description here

player0
  • 124,011
  • 12
  • 67
  • 124