Question: Suppose cell A 1 contains a string representing a ticker symbol and the corresponding price ( e . g . FB $ 7 4 .

Suppose cell A1 contains a string representing a ticker symbol and the corresponding
price (e.g. FB $74.31, AAPL $134.67). What is the correct formula to extract the price of
the stock. Note that the number representing the price could be any number of digits.
Check all correct answers.
MID(A1,FIND("",A1),LEN(A1))
RIGHT(A1,6)
MID(A1,3,LEN(A1))
RIGHT(A1,LEN(A1)-FIND("",A1))
Suppose cell A 1 contains a string representing a

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!