Copy/paste a range of values after finding the current date using office script in an excel report
This script is to check and compare each cell of a specific column to find the current date. If it is found, it copies and pastes as values a range of formula cells of the same row.
![]() |
![]() |
When I use the script ?
When I have to copy and paste a row of cell range based on the current date.
How to create the script ?
Read How to create, edit and select an Office Script in an excel report
How to create the button to associate it with the script ?
Read How to create a button and associated it to an Office Script in an excel report
How is/are the script(s) ?
Copy the code below and paste it into your script. You will see my comments in green if exist so follow the help to adapt to your need.
Before to create the script, I will add a new column called “day” in my table with this formula in C2 that will give me the day of the month:

The reason for that is that using the script to compare a date, I need to provide an unique value in text format (not in date format). Now copy the code below:
function main(workbook: ExcelScript.Workbook) { // change Sheet1 by yours let sheet = workbook.getWorksheet('Sheet1'); // change C1 by yours let row_count = sheet.getRange("C1").getEntireColumn().getUsedRange().getRowCount(); let rng = sheet.getUsedRange().getValues(); let cdate = new Date().getDate(); // change 1 if the start checking line not row 2 for (let i = 1; i < row_count; i++) { // change 2 if not column C if (rng[i][2] == cdate) { // change 3 (column D) and 5 (column F) by yours let firstcell = sheet.getCell(i, 3).getAddress(); let lastcell = sheet.getCell(i, 5).getAddress(); sheet.getCell(i, 3).copyFrom(`${firstcell}:${lastcell}`, ExcelScript.RangeCopyType.values); } } }
Interesting Topics
-
Be successfully certified ITIL 4 Managing Professional
Study, study and study, I couldn’t be successfully certified without studying it, if you are interested...
-
Be successfully certified ITIL 4 Strategic Leader
With my ITIL 4 Managing Professional certification (ITIL MP) in the pocket, it was time to go for the...
-
Hide visual and change background color based on selection
Some small tricks to customize the background colour of a text box...
-
Stacked and clustered column chart or double stacked column chart
In excel, I use a lot the combination of clustered and stacked chart...
-
Refresh Power BI
From the Power BI Service, I can set refresh but, for instance, there is no option to do it monthly or each time a change is made...
-
Power BI alerts to be sent by email from an excel file based on condition
I will explain how to send a list of emails from an excel file after creating alerts...