Is it possible somehow to make a calculation in 'cell text' of Google sheets HYPERLINK formula? This is not working:
=HYPERLINK("link.com","52.70*1.5")
I have already checked the internet and on this website for any available solution, but didn't find anything similar...
CodePudding user response:
Just remove the double quotes to the label maybe
=HYPERLINK("link.com",52.7*1.5)
CodePudding user response:
Wow - that was quick - thanks a lot!