I have been able to use adobe document generation to map the fields from an excel data source into a word template. The excel file has columns with Yes/No values which need to map on the word template in a table.
Currently we cannot populate checkbox in the adobe document generation API and wondering if we can achieve this using python-docx
The excel data and the word table can be located in the power automate forum link below
https://powerusers.microsoft.com/t5/General-Power-Automate/Populate-Yes-No-in-word-template/m-p/1751613#M101537
Option 1 - Check the correct option in the table
Option 2 - if option 1 is not possible show the correct value in the template. i.e if the excel row has a value of Yes, hide No and vise versa
I havent used to python-docx before and appreciate any help on this please.
Thanks
Related
I need some help applying background color when the share point list is modified.
I’ve flow if any item is modified in the share point list, then I will add that item into a new excel file. This is working fine please refer flow below.
if suppose a user has modified ID1 (4) status column = “fail “ then I want to be highlighted with some color in my excel file automatically.
Example excel output am looking for:
Sharepoint list:
MS FLOW:
I want to compare 2 excel files using Power Automate which are stored in SharePoint Documents , and if any of the column rows contains another values , a mail should be forwarded saying the values are not matching.
So for this i want to create Power Automate Flow
This shall be challening with Power-automate. I personally would go with some code. I believe you have already googled for the same issue.
But I could see below 2 Post which can be of your help.
List item
List item
I am developing a excel add-in using office.js, that populates table data in excel sheet. Add-in allows user to update table column details, but I want to display list of reference values rather than free text.
Example for scenario is given below.
Table displayed in excel will have two columns Column 1 And Column 2, I will have reference data as shown in reference table, When user want to update column 2 I want user to select only allowed values, but I don't see any options available in office.js library. Please guide me If any of you have any suggestions to achieve my need.
I am loading table using offfice.js objects as given below
var data = serverTableObjectAsArray;
var officeTable = new Office.TableData();
officeTable.addHeaders(data[0]);
officeTable.addRange(data);
Data validation was just introduced in 'beta' version. It is not available in the production version. You can check out the details in range.validation API here
Summary:
I have to fill in a report using data from Excel in Word Template.
Problem:
I am trying to write a macro which will search some variables in pre-defined template (doc) and replace these variables with data from excel. The variables are nothing but some text like <-Date->, <-Author-> (self-created).
There are also some Tables and Sections that needs to be duplicated from the Word Template depending on the Excel Data.
For Example
I’ll need to make 3 more Sections for Dates. Because
Word
1.<-Date->
Excel
03-10-2013
04-10-2013
05-10-2013
After Macro
1. 03-10-2013
04-10-2013
05-10-2013
Thanks in advance.
You do not need macros at all for this, MailMerge works extremely well to import and auto generate word documents from Excel for this very reason - and it's built right into Word:
http://office.microsoft.com/en-us/word-help/mail-merge-using-an-excel-spreadsheet-HA102809678.aspx
I am trying to find out if and how it is possible to create an Excel spreadsheet and add a checkbox as a field. I have created a spreadsheet using the spreadsheet tags already but would like to add this extra field.
Any help would be great..
Thank You
In order to add a checkbox to a spreadsheet, you need to add VB code to it. (making it excel-only, aka won't work on google docs)
It would be much easier to use true/false for column value.