Welcome to new things

[Technical] [Electronic work] [Gadget] [Game] memo writing

Office365

Sort Excel worksheets by name

I had the opportunity to work with Excel, which has hundreds of worksheets, and I tried to sort the worksheets by name because it was difficult to find the desired sheet. But Excel doesn't have the ability to sort worksheets by name. I end…

How to obtain and use an administrator-accessible, user-less token for the Microsoft Graph (Office365) API

A note on the Microsoft Graph (Office365) API for obtaining and using an admin token. impetus I tried to add and remove users and groups in Azure Active Directory using the API. The Azure Active Directory API has been integrated with the M…

What to do when you can't log in to an app with Azure Active Directory single sign-on (SSO)

I was interested in single sign-on (SSO) services and tried various services for a while. www.ekwbtblog.com I wanted to log in with my Office365 user as a key, so I ended up using Azure Active Directory SSO. As for the usage, I mainly use …

How to get and update your Microsoft Graph (Office365) API token

One way to manipulate the Web version of Office365 is through the Microsoft Graph (Office365) API. For example, with the Microsoft Graph (Office365) API, you can use the Send email from OutLook Excel Online file editing SharePoint file ret…

Try different SSO (single sign-on) services

I am interested in SSO (Single Sign On) and have tried various SSO services. I am completely new to SSO, so here is a brief summary of what SSO is and how it works, and how easy it is to use. motive I use various web services, each of whic…

Memo on how to read Excel files in JavaScript using SheetJS (xlsx)

I use SheetJS (xlsx) to load Excel files in JavaScript (TypeScript). The usage is a bit peculiar and I forget how to use it easily, so this is a memo for my own use. manual https://www.npmjs.com/package/xlsx install npm install xlsx File r…

How to upload files from Microsoft (Office365) Flow to Slack

When I received an email, I wanted to upload the email attachment to Slack and tried to use Microsoft (Office365) Flow to perform that task. Microsoft (Office365) Flow has a Slack connector, so I thought it would be easy to create one, Unf…

Good story about forced real name registration in Slack, but it would have been better if it had been provisioned from the beginning.

It's not much, but I wrote about Slack in a rambling way. Slack or Microsoft Teams? We use Office365, so we have access to Microsoft Teams, but we use Slack as our chat tool. Teams also tried using the tool, but at a glance, it was difficu…

Microsoft (Office365) How to pass map data and receive array data from PowerApps to Flow

Postscript (08/06/2019) Since only String type data can be passed from PowerApps to Flow, I had to manually convert map data to String, but you added a function to convert JSON data to String! qiita.com Now you can easily pass data! Data s…

Organize how to reference data in Microsoft (Office365) Flow

Microsoft Flow has data types such as basic types, arrays, and maps (objects), but because the operations are wrapped in a GUI, it is very difficult to understand how to get from the data to the desired element values. Often, after much tr…

Microsoft (Office365) PowerApps Usage Notes (Other)

Introduction. I used to touch Office365 PowerApps. PowerApps is a rather obscure tool, and I had neglected it, thinking that I would forget how to use it if I didn't write down how to use it. I haven't touched the application in a while to…

Microsoft (Office365) PowerApps Usage Memo (Data Sources and Collections)

Introduction. I used to touch Office365 PowerApps. PowerApps is a rather obscure tool, and I had neglected it, thinking that I would forget how to use it if I didn't write down how to use it. I haven't touched the application in a while to…

Microsoft (Office365) PowerApps Usage Notes

Introduction. I used to touch Office365 PowerApps. PowerApps is a rather obscure tool, and I had neglected it, thinking that I would forget how to use it if I didn't write down how to use it. I haven't touched the application in a while to…

Using OneDrive with Ubuntu

I have been touching OneDrive for a while now. I tried to use OneDrive on Ubuntu as well, but OneDrive does not have a Linux client. I did some research and found an article about a free OneDrive client for Linux, so I gave it a try. qiita…

A story about trying to switch from Dropbox to OneDrive, but it wasn't a good idea.

OneDrive is about the same price as Dropbox with Office365, so I decided to switch from Dropbox to OneDrive when Dropbox renewed, and here are my impressions after using OneDrive for a while. The following is my impression of OneDrive for …

The story of how I tried to cut back on Dropbox fees and made the mistake of trying OneDrive, Office365 for business.

I am using the paid version of Dropbox. My renewal month is coming up, so I tried to renew. The fee is 1200 yen/month.... Huh? Did I do this much? I have 1TB, but I haven't used even half of it... If it were a few hundred yen per TB, I cou…

How to catch errors in Microsoft (Office365) Flow

When using Microsoft Flow normally, if some error occurs in the middle of the process, the action stops there. For example, suppose you have a Flow that retrieves a list of users from SQL Server and sends a Slack to those users. If there i…

A story about the difficulties in obtaining Japanese national holiday data.

I was looking for Japanese holiday data to create a national holiday table in a database. In the end, I was able to obtain the data in CSV format that I wanted most from the following site (thanks to the author), but I took a long detour t…

Try to create a pseudo-API that can access Office365 without coding.

Office365 provides an API called Microsoft Graph API that allows you to access Office365. However, it is a bit time-consuming, as you need to acquire the token yourself and learn how to use the API. So, we will show you how to use Office36…