xlm

pandas.read_html not support decimal comma

☆樱花仙子☆ 提交于 2020-07-06 09:41:18
问题 I was reading an xlm file using pandas.read_html and works almost perfect, the problem is that the file has commas as decimal separators instead of dots (the default in read_html ). I could easily replace the commas by dots in one file, but i have almost 200 files with that configuration. with pandas.read_csv you can define the decimal separator, but i don't know why in pandas.read_html you can only define the thousand separator. any guidance in this matter?, there is another way to automate

Copy data from closed workbook based on variable user defined path

☆樱花仙子☆ 提交于 2019-12-18 17:36:10
问题 I have exhausted my search capabilities looking for a solution to this. Here is an outline of what I would like to do: User opens macro-enabled Excel file Immediate prompt displays for user to enter or select file path of desired workbooks. They will need to select two files, and the file names may not be consistent After entering the file locations, the first worksheet from the first file selection will be copied to the first worksheet of the macro-enabled workbook, and the first worksheet

Importing ODK XML file to MS Access using XLST transformation

99封情书 提交于 2019-12-12 02:54:17
问题 I'm trying to import a submission.xml file generated from an ODK survey into Access. I'm using the 'XML import' function in MS Access and need to transform the data so that the each data set of a node that will be imported to a table will contain the ID of the survey. I have a XML with the survey data that looks like this: <SoLa_Tu_Insp_2016-03-13 id="SOLA-160313" instanceID="uuid:63c27738-df02-4298-9090-7ab96d4e1ab2" submissionDate="2016-04-08T02:11:47.600Z" isComplete="true"

Copy data from closed workbook based on variable user defined path

那年仲夏 提交于 2019-11-30 16:07:11
I have exhausted my search capabilities looking for a solution to this. Here is an outline of what I would like to do: User opens macro-enabled Excel file Immediate prompt displays for user to enter or select file path of desired workbooks. They will need to select two files, and the file names may not be consistent After entering the file locations, the first worksheet from the first file selection will be copied to the first worksheet of the macro-enabled workbook, and the first worksheet of the second file selection will be copied to the second worksheet of the macro-enabled workbook. I've

Set the color of one cell based on the color of another cell

对着背影说爱祢 提交于 2019-11-29 16:57:51
What I would like to have is: IF A1 in Sheet 2 is blue Then A1 in Sheet 1 changes to blue I know I can get the color of A1 in Sheet 2 by using: =GET.CELL(63,Sheet2!A1) ( Excel: Can I create a Conditional Formula based on the Color of a Cell? ) But I can't figure out what I should do in the next step. Any suggestions? # Update on 12.01.2015 sorry if I gave too little information about my case, and not pointed out at the beginning clearly whether I want to do it in VBA or not. At the beginning I thought a function would work, but as I considered my file, a function might not work at all. It is

Set the color of one cell based on the color of another cell

僤鯓⒐⒋嵵緔 提交于 2019-11-28 10:25:16
问题 What I would like to have is: IF A1 in Sheet 2 is blue Then A1 in Sheet 1 changes to blue I know I can get the color of A1 in Sheet 2 by using: =GET.CELL(63,Sheet2!A1) (Excel: Can I create a Conditional Formula based on the Color of a Cell?) But I can't figure out what I should do in the next step. Any suggestions? # Update on 12.01.2015 sorry if I gave too little information about my case, and not pointed out at the beginning clearly whether I want to do it in VBA or not. At the beginning I