Questions tagged as 'excel'

2
answers

Special characters in Excel spreadsheet generated in Delphi

I found on the internet many codes related to generating EXCEL worksheets in DELPHI. Here is the code I'm using: objExcel := CreateOleObject('Excel.Application'); objExcel.Visible := True; objExcel.Workbooks.Add; objExcel.Workbooks[1].Sheets....
asked by 03.08.2015 / 15:09
0
answers

Countdown timer but when it reaches zero it resumes?

I have adapted a regressive timer that I found here on the net and adapted to what I want. It is to be used in a cycling event and in a time trial stage where cyclists depart every 2 minutes. It works but I can not loop so that when it reaches z...
asked by 22.05.2015 / 20:57
2
answers

Restart numbered list VBA Excel Word

I'm trying to create a macro in VBA to create a word document from Excel. At the moment I'm having problems with lists. I want list numbering to be linked to my Header1 and Header2 Styles so they look like this: 1. Header1 1.1. Header2...
asked by 08.10.2014 / 18:19
2
answers

Create worksheet by adding images and changing line color

This method creates an Excel spreadsheet, with int and string : public function arrayToXls($input) { // BoF $ret = pack('ssssss', 0x809, 0x8, 0x0, 0x10, 0x0, 0x0); // array_values is used to ensure that the array is n...
asked by 17.03.2015 / 14:00
3
answers

How to scan data from an Excel worksheet

I have a Mysql database and I want to get the data from an excel sheet and send it to it. I already know how to save the data in the table, you just need to know how to scan the worksheet and get the data.     
asked by 04.01.2017 / 12:56
3
answers

How to create an Excel macro to delete duplicate rows

You can show someone an example of Macro in Excel that removes duplicate rows, but comparing all rows in the same cell, or selecting which rows to compare, eg para linha_atual em todas_as_linhas faça para linha_de_comparacao em todas_as_l...
asked by 29.08.2014 / 17:19
2
answers

Is there an Excel function that returns the body of another function?

Simple example of what I want: suppose that in cell A1 I have the value 2, in cell A2 I have the value 3 and in cell A3 I have the formula = A1 + A2. If I put the formula = A3 in cell A4, it will obviously return the value 5 and what I would...
asked by 11.09.2018 / 18:02
2
answers

Deleting rows only if any cell in the worksheet is blank (using a script)

I have a calc (libreoffice) / Excel spreadsheet (it's actually a text file I opened as a spreadsheet for easy viewing) that contains some blank cells (not the entire line): I would like if some cell on the right is blank, the entire row...
asked by 28.05.2017 / 17:04
1
answer

Excel DISTF Equivalent in R

I would like to know if there is a function similar to Excel function, DISTF in the R software? The Excel DISTF function returns the F (right-tail) probability distribution (diversity level) for two sets of data. You can use this function to...
asked by 16.02.2018 / 21:15
3
answers

foreach - Moving CSV file

I need to go through a CSV file to capture a value and print it on the screen. Example: Column "N" line "2", in this case, it is cell N2 which is written: 2.98 How to print this N2 cell on the screen? How to get there? <?php$h=fo...
asked by 15.08.2017 / 14:51