Questions tagged as 'excel'

1
answer

Concatenate address in Excel VBA Range Object

I need to concatenate an address in the Range Object of Excel and I can not. The value is an integer variable. Here's the line of code: Range("O10").Formula = "=SUM(O12:O" & "valor)"     
asked by 10.02.2015 / 12:14
1
answer

How to compare two columns of a worksheet, and keep information that is the same?

Hello I'm working with a spreadsheet in Excel that has this structure: Coluna_A Coluna_B A A B B C C C_1 E D E F What I want is to figure out a way to put together a third column, which has data p...
asked by 03.06.2018 / 01:46
1
answer

Referencing all cells with a given string

I do not know if it's possible or not, but can you reference all of them in cells with a given String in a single cell? For example, I wanted the column cell F to be all the values in column B that have String q*w* . You do not need to...
asked by 18.05.2018 / 09:42
1
answer

function if - true copy cell and paste in another

I need a little help. I have an excel sheet and I want to do the following: In this function = SE(F10=O11;Copia valor celula G2 e cola na celula G10;"falso") I want to make a comparison and if true copy the value of cell G2 and paste in cel...
asked by 23.05.2018 / 13:10
1
answer

Excel 2013 VBA Doubt

I have this bit of code: Range("F8").Select For Each m In Range(Range("C8"), Range("C" & rows.Count).End(xlUp)) If ActiveCell.Offset(0, 0) <> " " Then ActiveCell.Offset(0, 7) = Application.vlookup(ActiveCell, Sheet...
asked by 14.02.2018 / 18:22
1
answer

Problems with the excel connection string

I have the following code snippet that connects to Excel, however it returns me the error: string sFileXLSX = ConfigurationManager.AppSettings["ExportPerformanceEntrega"]; string strConnXLSX = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source='"...
asked by 03.10.2017 / 22:18
3
answers

Excel rounding value 7,256E + 18

That old doubt with Excel cell formatting is causing me problems now. I use laravel framework and to export the data I use Laravel Excel . I am formatting the cell for text type and even then Excel continues rounding the values and changing...
asked by 28.09.2017 / 13:35
1
answer

How to read an excel file and do the mapping

I would like to know how I can read an excel file and then do the mapping to a datagridview. Code I tried: var fileName = @"C:\Users\HP8200\Desktop\test.xlsx"; var connectionString = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + fileNa...
asked by 25.09.2017 / 11:22
1
answer

What excel function should I use?

I have a list of male and female names that I need to determine in the front cell of the gender of the name. The logic that analyzes the name and says if it is male and female is ready, however, I need to create the following logic, but I do...
asked by 24.07.2017 / 16:53
1
answer

How to delete or hide the password typing of data access from a server running SQL Server from VBA or Excel macro?

I am performing a migration service from a database with a SQL Server server in a company, but have asked me to intermediate the migration in Excel Spreadsheets, because they want so in this first phase to advance some treatments in same work...
asked by 29.06.2017 / 05:06