I made this little grade calculator to help students to navigate progression opportunities through UCAS points. Make a copy of it, it is easily adjusted to fit any course.
🔗Grade calculator
I made this little grade calculator to help students to navigate progression opportunities through UCAS points. Make a copy of it, it is easily adjusted to fit any course.
🔗Grade calculator
There's no need to create fancy python programs for converting currencies when you can connect to google finance through a simple formula. In the below example we are using the British Pound (GBP) as the user input to covert to US Dollars, Japanese Yen (JPY), Euro (EUR), India Ruppees (IND) and the Canadian Dollar (CAD). The currency converts roughly every 15 minutes as it syncs with Google finance data.
To break this down in column B we have entered the fomula to convert the user input of the British Pound which converts the cell data into US Dollars. So A2 is where the data is coming from and calculating it automatically into B2. In C2 for the Japanese conversion use formula
=Googlefinance("Currency:GBPJPY")*A2
A list of the currecies are below
GBP - British Pound
USD - US Dollars
Japanese Yen - JPY
Euro - EUR
Indian Rupees - INR
Canadian Dollar - CAD
Sparklines are smalls charts that help visualise data within spreadsheets. Sparklines can used in Google Sheets or Microsoft Excel. In the below example we will show 4 ways of using sparklines in Google sheets.
Below we have a simple spreadsheet with some data on minutes played for a range of players per game. Once you have some data, to create a column chart in sparklines simply type the formula in the location you want it ; =sparkline(B3:F3,{"charttype","column";"color","red"}). For this example its in B14 and the column chart will form from the data in cell range B3:F3, then specify the charty type and the color that you want it displayed in.
Process Switching: Process switching is the traditional method of packet forwarding used in early routers. When a packet arrives at a router...