ERP Launchpad Internship Tasks Task 1: Create a Copy of the Data Set Added a New Sheet Used the Query Function with the Formula =QUERY('Data Set'!A1:Z, "SELECT * WHERE D IS NOT NULL AND D < 100 ORDER BY B DESC", 1) Fetched the Data From the Data Set to new sheet Task 2: Created Two New Columns As Industry and NSE/BSE Ratio Used Given Two Formulas to Fetch the Data From NSE/BSE Code Sheet Used this Formula to Fetch the Industry Data =ARRAYFORMULA(IF(LEN(VLOOKUP(A2, 'NSE/BSE Code'!$A$4:$C$219, 2, FALSE)) > 0, VLOOKUP(A2, 'NSE/BSE Code'!$A$4:$C$219, 2, FALSE), " Null")) The above check with a if condition the NSE/BSE Code sheet 2 nd column if its empty or not , if its empty than if does not apply the vlookup and fetch the value , Since noting was mentioned what to do when the if condition becomes false and vlookup doesn’t apply I have made it that it enters a Null Value when condtion is False Here Had to make the Range as Constant so it does not give N/A value while Fetching Data Used this Formula to Fetch the NSE/BSE Ratio Data =ARRAYFORMULA(IF(LEN(VLOOKUP(A2, 'NSE/BSE Code'!$A$4:$C$219, 3, FALSE)) > 0, VLOOKUP(A2, 'NSE/BSE Code'!$A$4:$C$219, 3, FALSE), "Null ")) Here I just had to change the Formula’s input Index from 1 to 2 so that it checks the 3rd Column Task 3: Created 2 Columns Bear Mode 1 and Bear Mode 2 For Bear Mode 1 Condition used the following formula =ARRAYFORMULA(IF(F2 > 30%, "Yes", "No")) For Bear Mode 2 Condition used the following formula =ARRAYFORMULA(IF(H2 < 30%, "Yes", "No")) Created the Column Stock Status Used the Formula with Multiple If Conditions As D2, PE Ratio column M2, Bear Mode 1 Column N2, Bear Mode 2 Column =ARRAYFORMULA(IF(AND( D2 < 65, M2="NO", N2="NO"),"Good Stock", " ")) Task 4: Created a New Sheet And used the query Function to fetch all Data where Stock Status = 'Good Stock' using the Formula =QUERY('Tasks List'!A1:O191, "SELECT * WHERE O = 'Good Stock' ", 1) Applied Conditional Formatting on Market Cap , Current Price , PE Ratio , Yesterday Closing Price Columns And Color Formatting on the Rest Columns For Market Cap Table For the Current Price For PE Ratio For Yesterday Closing Price Task 5: Created Pivot Table on a Different Sheet Industry Wise Total count of Companies Industry Wise Sum of Market Cap Industry Wise Average of Market Cap Finally Created a Data Studio Report