@Ryan ...thanks for your URL...I was not aware of that way to provide multiple stock reports.
@Ask1900
You are dealing with multiple issues.
1) You still did not post the blocks and links you used to obtain GOOG and IBM stock prices using the Yahoo Finance API (
https://developer.yahoo.com/finance/company.html ) The method of using the Yahoo Finance API determines what you have to do to post multiple stock quotes in a single URL post.
2) the Stock Quotes for App Inventor 2 in the MIT tutorials (
http://appinventor.mit.edu/explore/ai2/stockquotes.html )
contains erroneous information. The
http://finance.yahoo.com/d/quotes.csv?f=l1&s= is no longer valid (since about mid 2016) . You should use the link provided by Ryan (
http://download.finance.yahoo.com/d/quotes.csv?f=nl1c1&e=.csv&s= ) or use a structure like
http://download.finance.yahoo.com/d/quotes.csv?s=GOOG&f=sl1d1t1c1ohgv&e=.csv&columns='symbol,price,date,time,change,col1,high,low,col2 and modify the code in the Web.Get event handler. I use this methodology with a different url call.
MIT really needs to update this tutorial because at present, as shown, the tutorial code does not work and that is sad.
3) Ryan's URL is a very simple way to achieve your goals .
either one of these constructions will provide your goal

followed by goog,ibm .This is a slight modification of Ryan's code. His code provides information from the hk (Hong Kong stock exchange). Substitute his
2628.hk,
1398.hk with goog,ibm and you should be fine. You can also use more than two stock codes, separated by commas. goog,ibm,msft,gm etc. I am not sure how many you can daisy chain. Be sure NOT to separate with spaces. The symbol must immediately follow the comma.
4) The erroneous MIT tutorial blocks are
change them as shown in #3 and they will work with the original MIT Get blocks when followed by the Web.Get call

5) When asking for help, it is very important to post the links you use, the relevant block code image and to also perform a DoIt if not dealing with local variables. Otherwise it is difficult for Forum members to provide meaningful advice.
6) There are MULTIPLE ways of handling the Yahoo Finance data. (See the link in #1).
Did this solve your issue? If you still want to separate your csv file info, you need to provide a screenshot of your blocks and show us how you obtained the csv.
Be aware, the information you obtain, per Yahoo's terms of use, can only be used in a non-commercial app. If you sell your app, you cannot use their API.
Here is another link that might help you design your stock app
http://wern-ancheta.com/blog/2015/04/05/getting-started-with-the-yahoo-finance-api/ and just because you are new you (and others) might benefit from this advice:
We want you to have fun with App Inventor so here are some resources to help you learn to use the AI2 tools A very good way to learn App Inventor is to read the free Inventor's Manual here in the AI2 free online eBook
http://www.appinventor.org/book2 ... the links are at the bottom of the Web page. The book 'teaches' users how to program with AI2 blocks.
We urge new AI developers to do some tutorials before embarking on ambitious projects. Doing, not just reading the tutorials will help you to actually learn to code with AI rather that just follow examples.
Regards,
Steve