Skip to content

Instantly share code, notes, and snippets.

@WrathOfZombies
Created May 9, 2017 01:21
Show Gist options
  • Save WrathOfZombies/d2926ee64f0feb4d84dd49a427e5dfaa to your computer and use it in GitHub Desktop.
Save WrathOfZombies/d2926ee64f0feb4d84dd49a427e5dfaa to your computer and use it in GitHub Desktop.
Setting and getting date values in a range and manipulating them using the Moment JavaScript library with the Moment-MSDate plug-in - Shared with Script Lab
name: Working with dates
description: Setting and getting date values in a range and manipulating them using the Moment JavaScript library with the Moment-MSDate plug-in
author: WrathOfZombies
host: EXCEL
api_set: {}
script:
content: |
declare var moment: any;
$("#setup").click(setup);
$("#set-date-value-using-timestamp").click(setDateValueUsingTimestamp);
$("#get-date-value").click(getDateValue);
async function setDateValueUsingTimestamp() {
try {
await Excel.run(async (context) => {
const sheet = context.workbook.worksheets.getItem("Sample");
const now = Date.now();
console.log(`set (timestamp): ${now}`);
const nowMoment = moment(now);
console.log(`set (moment): ${JSON.stringify(nowMoment)}`);
const nowMS = nowMoment.toOADate();
console.log(`set (MSDate): ${nowMS}`);
const dateRange = sheet.getRange("B4");
dateRange.values = [[nowMS]];``
dateRange.numberFormat = [["[$-409]m/d/yy h:mm AM/PM;@"]];
dateRange.format.autofitColumns();
await context.sync();
});
}
catch (error) {
OfficeHelpers.Utilities.log(error);
}
}
async function getDateValue() {
try {
await Excel.run(async (context) => {
const sheet = context.workbook.worksheets.getItem("Sample");
const dateRange = sheet.getRange("B3");
dateRange.load("values");
await context.sync();
const nowMS = dateRange.values[0][0];
console.log(`get (MSDate): ${nowMS}`);
const nowMoment = moment.fromOADate(nowMS);
console.log(`get (moment): ${JSON.stringify(nowMoment)}`);
const now = nowMoment.unix();
console.log(`get (timestamp): ${now}`)
});
}
catch (error) {
OfficeHelpers.Utilities.log(error);
}
}
async function setup() {
try {
await Excel.run(async (context) => {
const sheet = await OfficeHelpers.ExcelUtilities
.forceCreateSheet(context.workbook, "Sample");
const data = [
["Now"],
["=NOW()"]
];
const dataRange = sheet.getRange("B2:B3");
dataRange.formulas = data;
const headerRange = sheet.getRange("B2");
headerRange.format.font.bold = true;
const dateRange = sheet.getRange("B3");
dateRange.numberFormat = [["[$-409]m/d/yy h:mm AM/PM;@"]];
dateRange.format.autofitColumns();
sheet.activate();
await context.sync();
});
}
catch (error) {
OfficeHelpers.Utilities.log(error);
}
}
language: typescript
template:
content: |
<section class="ms-font-m">
<p>This sample shows how to set and get date values in a range and manipulating them using the Moment JavaScript library with the Moment-MSDate plug-in.</p>
</section>
<section class="setup ms-font-m">
<h3>Set up</h3>
<button id="setup" class="ms-Button">
<span class="ms-Button-label">Add sample data</span>
</button>
</section>
<section class="samples ms-font-m">
<h3>Try it out</h3>
<button id="set-date-value-using-timestamp" class="ms-Button">
<span class="ms-Button-label">Set date value using timestamp</span>
</button>
<button id="get-date-value" class="ms-Button">
<span class="ms-Button-label">Get date value</span>
</button>
</section>
language: html
style:
content: "section.samples {\r\n margin-top: 20px;\r\n}\r\n\r\nsection.samples .ms-Button, section.setup .ms-Button {\r\n display: block;\r\n margin-bottom: 5px;\r\n margin-left: 20px;\r\n min-width: 80px;\r\n}\r\n"
language: css
libraries: |
# Office.js
https://appsforoffice.microsoft.com/lib/1/hosted/office.js
# CSS Libraries
office-ui-fabric-js@1.4.0/dist/css/fabric.min.css
office-ui-fabric-js@1.4.0/dist/css/fabric.components.min.css
# NPM libraries
core-js@2.4.1/client/core.min.js
@microsoft/office-js-helpers@0.6.5/dist/office.helpers.min.js
jquery@3.1.1
moment@2.18.1
moment-msdate@0.2.0
# IntelliSense: @types/library or node_modules paths or URL to d.ts files
@types/office-js
@types/core-js
@microsoft/office-js-helpers/dist/office.helpers.d.ts
@types/jquery
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment