Python: Basics 13 If functions

I. If functions in Google Sheets Sample 1 Sample 2 At A1=importdata(“https://pastebin.com/raw/cSZ8pYWh”) At H2=average(B2,C2) At I2=if(H2<30,”Failed”,(if(H2<50,”C”,(if(H2<70,”B”,(if(H2<90,”A”,(if(H2<=100,”S”))))))))) You can see the sheets here: https://docs.google.com/spreadsheets/d/1fbs69LCn2SAPdcQQ_nehb8vn-ETL2x2uQNePp7M5A9k/edit?usp=sharing II. If statements in Python Sample 1…

Python: Basics 8 Pivot_table

I. Creating pivot tables in Google Sheets Sample 1: Attendance Sample 2: Questionnaire Sample 3: Exam resykts You can see the pivot tables here: https://docs.google.com/spreadsheets/d/1gZtgnRSkkx0ymXSgNE__WX7W4YIF3W0chUJvT2U63b4/edit?usp=sharing II. Creating pivot tables with…