Have dynamic datetime showing in Google Slides - google-slides-api

Is there a way to insert the dynamic date and/or time in Google Slides?
I seem to have issues forgetting updating the same (usually the month) when I make presentations.

Related

Is there a way of showing all data of a row from a column chart in Google Sheets?

I'm trying to replicate the UI of a website chart (the following image):
I'm working in Google Sheets and I have imported the same data used in the creation of the chart above, however I couldn't figure out how to add to the hover label (? I'm not sure I'm calling it right...) all the data I wanted.
Right now the chart in my Google Sheets only shows the Net Amplitude data when hovering. Can you please direct me to add the rest?
Judging from the comments from below my question, I can only conclude that Google Sheets has this limitation. Consider this an answer, although the credit should go to #ziganotschka and #Nami888 for taking the time to confirm my suspicions.

How to extract data of previous week based on drop down from the Yahoo Fantasy Football

Hy, I am using Yahoo Fantasy Football and I have design Google Sheet to get the score data which is the working fine. The link to the sheet is as under.
Google Sheet Link
I have changed the permission to Editor. I have made a drop-down which holds the information of Week numbers. Basically, my idea is that by choosing the week number I want to populate the data from yahoo fantasy football. For importing data, i am using this command.
=importhtml("https://football.fantasysports.yahoo.com/f1/683375","table",1)
and this command is working well.
I tried it by using the same command but it does not works for the week numbers. The source of the page is as under.
so according to the given picture, here is the week number, I want to implement the same in the google sheet by using the dropdown. I have implemented the drop down but it does not work. Is there a way to interlink both using scripts or command so from google sheet when I chose week from the drop-down the concerning data should be populated? please take a look at the Google Sheet given above. I am also getting this error, while it was working fine before, how can it be resolved also.
Thanks
IMPORTHTML cannot retrieve elements dynamically inserted by a script. In your case the content on Week matchups is inserted dynamically and therefore will not be retrieved (it will return empty). Moreover, IMPORTHTML olny gets data from tables or lists and if you inspect what it seemed to be a table in Week Matchup is just actually a series of divs. If the content would not be inserted dynamically, to get the data from these divs you would need to use IMPORTXML.
If you still want to retrieve this information I am afraid that you will need to look for other web scraping techniques.

Is It Possible to Hide Google Sheet From Selected Users?

Simple question really. Is it possible to hide certain sheets in a Google Sheet Doc from specific editors? The scenario is that each user has a page in which they fill in data. Only they can change data on their page based on sheet protection. For aesthetic purposes and ease of use, I'm trying to find out whether I can hide all sheets except the one the user has permission to edit.
Unfortunately it is not possible because if you hide or show a sheet - it will apply for anyone who opens it.
You can write a script that will show a certain sheet - depending on the user who opened the spreadsheet, but if another user opens the same spreadsheet simulateneously - this will lead to conflict behavior.
As a workaround, I can recommend you to create a different spreadsheet for every user plus a master spreadsheet to which all the separate spreadsheets will be synched with =IMPORTRANGE
In this scenario, you as the only master spreadsheet editor will have access to all data, while the users have only permissions for their spreadsheet
Another workaround would be to implement sheet protections (this is different from hiding sheets!).
In this case, every user can only edit the sheet he is entitled to, but he can still view the other sheets.

Is there a way to reference a different cell changing each day depending on date?

So, I am trying to build a dashboard kinda thing in Google Sheets and in that, I have a cell that has to show a quote or a motto for the day (this is different for each day and has to change depending on the date). I have all 366 quotes for 2020 in a different sheet in the same Google sheets workbook.
I need to get a different quote every day and update it on the quote/motto cell from the quotes sheet.
I am noobie when it comes to sheets and it would be great if someone could guide me in getting this sorted out (I'm having sleepless nights because of this)

Google Calendar to Google Sheet integration

I help with scheduling for a post-secondary first aid team. We schedule students 7 days a week from 9am-9pm and 9pm-9am on a google calendar, and we use google sheets to keep track of how many shifts they have done on which day/night.
I was wondering if it would be possible to populate this google sheet, whenever we add a student to the calendar for their shift. So say I add Student A on October 31st (Monday), can I make the process of adding 1 to the total shifts they have done on a monday day automatic? (I have some coding knowledge)
See:
Yes, it is possible. (I haven't tried it though)
You may use getEvents() methods from Calendar Service to get all events that occur within a given time frame.
Then, as suggested by #teatimer in this SO post, your range has to match the size of the values array in both columns and rows when setting the values on a range.
To help you on the implementation, kindly check these SO posts:
Import google calendar data into existing google spreadsheet
Import Google or iCal calendar data into a google spreadsheet.
You may want to also check this forum and try the given option too.

Resources