This is a pseudo code for my excel work
IF sheet1(column(range)).value IS Exit in sheet2(column(range)).value on specific(date) in sheet2(column(range)).value(date) Then print "P" Else print "A"
Hello guys i create a google form for employee attendance so i want that when employee submit their form and automatic update in daily attendance sheet in google sheet.
but i don't find any solution regarding this issue and i need to create like in images Daily Attendance Sheet
Related
I am quite new to power apps and trying to determine the best course of action for my below scenario. I want to identify which users submitted to List A and which haven't based on each new monthly file.
I have a List(List A) on Sharepoint I created where users go in and input information, I want to come up with a list of users who have submitted to this list.
I want to reconcile with this monthly file excel that is dropped into a sharepoint link by another user with updated information. So essentially it would be doing a Vlookup into List A to determine who has submitted a record. .
So what I have done:
Created List B manually (from the excel file dropped)
using Power automate/Flow do a vlookup from List B to A whenever a record is created in A.
I created a column in List B that is not within the standard excel file (Column name Submitted, answers would be either Yes/No based on the vlookup) , Vlookup is something like if A.ProjectID = B.ProjectID then B.Submitted = Yes otherwise No.
Problem:
What are my options to get around the fact this file is uploaded monthly? I dont want to recreate List B each month and have to setup the "Submitted" Column each time. I want this to work in an automated fashion.
Some Questions/Ideas:
Is there a way I can overwrite List B and keep the "Submitted" column each month automatically? It is dropped into a new folder each month on SP. ie "Aug 2021" , "Sept 2021", etc.
Can I do the recon in the sharepoint excel file itself automatically each month? Ie When the excel file is created run a macro to create the new column and do a vlookup?
Can a 3rd List be created as some master tracker page to hold all project status'?
Any ideas or suggestions are welcome. Looking for the best way on how to do this. Thanks
I think you should approach this from PowerAutomate.
I'd start off by creating a flow with a SharePoint trigger to catch when the Excel file is uploaded.
You should then get the content from the Excel with Excel Online / List Rows in a Table
Use 'Apply to Each' to loop over each user in the table. Inside the loop do the lookup.
Write back the result to the Excel with Excel Online / Update a Row action.
I'd recommend you create a separate thread for the project master list problem and elaborate your goals thereto.
I have information entered into a spreadsheet using a user form, each row has a unique user id and a bunch of data and pre-labeled empty columns for future updated information.
I have created another user form that I want to use to update empty columns in the rows as required. I want to be able to enter the unique id into a text box and updated information to populate blank columns into other relevant text boxes and when I hit edit it searches for the relevant unique id and puts the information into the relevant columns of that row.
I do have the clear and close buttons working.
update form.
This is my sample spreadsheet, with empty columns to be populated when updating
sample spreadsheet
And the information currently entered into the spreadsheet is entered by this user form.
enter information
I had previously found something like this on this site, but now cannot find it.
I am super new to this and would not know where to start to create my own cod
Add here the excel sheet sample to see the table structure. The userform for updating records is in the same sheet as the data?
I am currently looking at creating an email with a yes/no CTA, I want this data to link through to an excel sheet and populate the answer in a specific column using the email tag to assign the answer to the user column.
I have an excel spreadsheet with sensitive data. Recently the spreadsheet was accidentally shared with a person outside my company. I want to know if the following is possible:
- Ideally we want the Excel to check if the user is a company employee when the spreadsheet is opened and only show content if the user is a company employee. If the user is not an employee then don't show content.
Is this something that is feasible? If so what options are there to implement this?
I have created an excel file to keep record of worked hours and revenue for each customer and each employee, also i created a sheet with projects for each customer that also keeps record of the total worked hours per project etc.
I create a project and choose the customer (Sheet 2)
I go back to my hour registration sheet and set the starting time and choose the customer from a dropdown menu (Sheet 1; A2) (data validation)
Then i would like to filter the second cel (Sheet 1; B2) with a dropdown menu containing the projects so it only shows projects for that specific customer.
When i finish a project i mark the project as finished by choosing "Yes" in the last cel of the row. (Sheet 2)
Then i would like the project dropdown menu to also filter the finished projects. (IF="Yes" dont show on data validation)
I've tried all kinds but nothing works with my current setup.
Any suggestions?
Are you using some kind of VBA or doing it through Formulas? if you are using vba then show the code here.