Trending questions in Others

0 votes
1 answer

Exporting HTML Table to Excel Extension Issues

In my application, I'm experiencing a similar ...READ MORE

Nov 14, 2022 in Others by narikkadan
• 63,600 points
1,633 views
0 votes
1 answer

How to add Header and Footer in excel with vb.net?

This code will work: Imports Microsoft.Office.Interop Private Sub Button1_Click(sender ...READ MORE

Dec 10, 2022 in Others by narikkadan
• 63,600 points
743 views
0 votes
1 answer

Convert column in excel date format (DDDDD.tttt) to datetime using pandas

Given # s = df['date'] s 0 ...READ MORE

Oct 2, 2022 in Others by narikkadan
• 63,600 points
3,507 views
0 votes
1 answer

Excel sum formula without table - Equivalent to the Math Sum Symbol

You can use SUMPRODUCT for this. Assuming X is in cell B1, ...READ MORE

Dec 11, 2022 in Others by narikkadan
• 63,600 points
450 views
0 votes
1 answer

How to separate Unit/Suite/APT/# from an address in Excel

Use batch geocode your file on geocoder.ca This ...READ MORE

Dec 10, 2022 in Others by narikkadan
• 63,600 points
724 views
0 votes
1 answer

Convert Excel to Word using Aspose.Word for Java

However, Aspose.Cells APIs cannot directly convert Excel ...READ MORE

Dec 10, 2022 in Others by narikkadan
• 63,600 points
719 views
0 votes
1 answer

Is there a way to search the iOS app store online?

Apple finally made it possible to just use ...READ MORE

Sep 21, 2022 in Others by rajatha
• 7,680 points
3,915 views
0 votes
1 answer

Excel number format: scale number by ten thousand or hundred thousand

In the MSExcel spreadsheet, Right Click on ...READ MORE

Oct 18, 2022 in Others by narikkadan
• 63,600 points
2,760 views
0 votes
1 answer

How to get Shape's internal name in Excel

You can reference a shape by using ...READ MORE

Nov 12, 2022 in Others by narikkadan
• 63,600 points
1,675 views
0 votes
1 answer

Convert Word doc, docx and Excel xls, xlsx to PDF with PHP

After receiving a request, I'll put the ...READ MORE

Nov 20, 2022 in Others by narikkadan
• 63,600 points
1,327 views
0 votes
1 answer

How to insert a picture into Excel at a specified cell position with VBA

Try this: With xlApp.ActiveSheet.Pictures.Insert(PicPath) With ...READ MORE

Oct 24, 2022 in Others by narikkadan
• 63,600 points
2,479 views
0 votes
1 answer

In a excel formula I need to create a list of names on one sheet based upon criteria/data of another sheet

The final formula is: =IF(ROWS($H$3:H3)<=$I$1,INDEX(Personnel! ...READ MORE

Nov 25, 2022 in Others by narikkadan
• 63,600 points
1,089 views
0 votes
1 answer

Check whether a cell contains a substring

Try using this: =ISNUMBER(SEARCH("Some Text", A3)) This will return TRUE if ...READ MORE

Dec 11, 2022 in Others by narikkadan
• 63,600 points
398 views
0 votes
1 answer

Excel formula gives error when write using Apache-poi library in Java

I tested some sample code. The cell ...READ MORE

Nov 5, 2022 in Others by narikkadan
• 63,600 points
1,941 views
0 votes
1 answer

Adding a percentage sign to a number field in Excel

Format these cells with custom format ?\% READ MORE

Dec 10, 2022 in Others by narikkadan
• 63,600 points
440 views
0 votes
1 answer

Way to overcome Excel Vlookup function limit of 256 characters

If you are using VLOOKUP like this: =VLOOKUP(A2,D2:Z10,3,FALSE) i.e. ...READ MORE

Sep 30, 2022 in Others by narikkadan
• 63,600 points
3,510 views
0 votes
1 answer

Pass multiple Excel cell values to Power Automate

If you have certain data that you ...READ MORE

Nov 20, 2022 in Others by narikkadan
• 63,600 points
1,266 views
0 votes
1 answer

How to programmatically code an 'undo' function in Excel-Vba?

Add the command button to the worksheet ...READ MORE

Nov 25, 2022 in Others by narikkadan
• 63,600 points
1,030 views
0 votes
1 answer

How to remove Blank Rows using EPPlus Excel Package Plus

It is checking the last row if ...READ MORE

Oct 3, 2022 in Others by narikkadan
• 63,600 points
3,281 views
0 votes
1 answer

white screen on simulator iphone Xcode

After creating the request, you must actually ...READ MORE

Sep 20, 2022 in Others by Aditya
• 7,680 points
3,862 views
0 votes
1 answer

Extract Uppercase Words on Excel

Try the following User Defined Function: Public Function ...READ MORE

Nov 14, 2022 in Others by narikkadan
• 63,600 points
1,484 views
0 votes
1 answer

Write from R into template in excel while preserving formatting

you have the XLConnect package. Read the documentation or the vignette of that ...READ MORE

Nov 10, 2022 in Others by narikkadan
• 63,600 points
1,657 views
0 votes
1 answer

How to get the JasperReports into Excel format with proper alignment

Remove at least one parameter: exporter.setParameter(JRXlsExporterParameter.IS_COLLAPSE_ROW_SPAN,Boolean.TRUE) Note that JRXlsExportParameter is deprecated the correct ...READ MORE

Sep 21, 2022 in Others by narikkadan
• 63,600 points
3,821 views
0 votes
1 answer

Spire When Pdf-ing an excel file it leaves some formulas as System.Object[][]

Since you tested the Excel file and ...READ MORE

Nov 25, 2022 in Others by narikkadan
• 63,600 points
983 views
0 votes
1 answer

How to get second-highest salary employees in a table

SELECT MAX(SALARY) FROM Employee WHERE SALARY < ...READ MORE

Nov 7, 2022 in Others by gaurav
• 23,260 points
1,790 views
0 votes
1 answer

How to change compound annual growth rate (CAGR) formula depending on data existing/not existing?

Sep to calculate CAGR. Excel has an ...READ MORE

Nov 26, 2022 in Others by narikkadan
• 63,600 points
931 views
0 votes
1 answer

Android: how to write a file to internal storage

Android offers openFileInput and openFileOutput from the ...READ MORE

Nov 4, 2022 in Others by gaurav
• 23,260 points
1,872 views
0 votes
1 answer

Excel-VBA - How to identify Target range (more than 1 cell) is deleted in a Worksheet_Change function?

You misunderstand the purpose of the function ...READ MORE

Sep 23, 2022 in Others by narikkadan
• 63,600 points
3,708 views
0 votes
1 answer

Formatting Excel Spreadsheet using Apache POI in JAVA

Try this: CellRangeAddress range= new CellRangeAddress(firstrow, lastrow, firstcol, ...READ MORE

Oct 27, 2022 in Others by narikkadan
• 63,600 points
2,220 views
0 votes
1 answer

Word Mail Merge with Excel data has to be saved in different files with custom names

Try this: Public Sub Mail_Merge() On Error GoTo ErrH Dim ...READ MORE

Nov 6, 2022 in Others by narikkadan
• 63,600 points
1,775 views
0 votes
1 answer

How to get sum of all matches of HLOOKUP in Excel?

Consider: =SUMPRODUCT((A1:E1="apple")*(A2:E2)) To include more ...READ MORE

Oct 16, 2022 in Others by narikkadan
• 63,600 points
2,671 views
0 votes
0 answers

Convert Excel to PDF programmatically

I am using (docker, deploy using k8s....). How ...READ MORE

Nov 13, 2022 in Others by Kithuzzz
• 38,000 points
1,492 views
0 votes
1 answer

Get Excel data in DataTable

The JET/Access driver has a number of ...READ MORE

Nov 10, 2022 in Others by narikkadan
• 63,600 points
1,579 views
0 votes
1 answer

Excel VBA is not recording macro properly

The "awkward code" is an R1C1 notation ...READ MORE

Nov 15, 2022 in Others by narikkadan
• 63,600 points
1,350 views
0 votes
1 answer

Cannot connect to Excel SSIS

You need to set run64BitRuntime to False. ...READ MORE

Sep 24, 2022 in Others by narikkadan
• 63,600 points
3,617 views
0 votes
1 answer

How to convert an excel formula to SQL to calculate daily compound interest

Here is a solution that is effective. ...READ MORE

Nov 26, 2022 in Others by narikkadan
• 63,600 points
864 views
0 votes
1 answer

Activate last excel worksheet on worksheetlist with closedxml in c#

This will answer your question :  Changing ...READ MORE

Nov 5, 2022 in Others by narikkadan
• 63,600 points
1,768 views
0 votes
1 answer

Bloomberg excel add-in BDH

Change an override Fill=P to, for instance, ...READ MORE

Oct 11, 2022 in Others by narikkadan
• 63,600 points
2,850 views
0 votes
1 answer

IF function in combination with an Round function Excel

I'm not sure if it is a ...READ MORE

Sep 25, 2022 in Others by narikkadan
• 63,600 points
3,518 views
0 votes
1 answer

c#, Microsoft Interop Excel , change font style for s selected range

Change your code to this: worksheet.get_Range("B3", "B4").Cells.Font.Name = ...READ MORE

Oct 31, 2022 in Others by narikkadan
• 63,600 points
1,940 views
0 votes
1 answer

Print chosen worksheets in excel files to pdf in python

In the simplest form: import win32com.client o = win32com.client.Dispatch("Excel.Application") o.Visible ...READ MORE

Sep 24, 2022 in Others by narikkadan
• 63,600 points
3,550 views
0 votes
1 answer

"Advance" an Excel formula via keyboard shortcut while in edit mode?

As requested, you can carry out the ...READ MORE

Dec 10, 2022 in Others by narikkadan
• 63,600 points
429 views
0 votes
1 answer

Loop formula in excel vba

You can use an IF statement to ...READ MORE

Nov 25, 2022 in Others by narikkadan
• 63,600 points
837 views
0 votes
1 answer

ISBLANK returns False for empty cells having Formulas

ISBLANK will return TRUE only when a ...READ MORE

Nov 8, 2022 in Others by gaurav
• 23,260 points
1,550 views
0 votes
1 answer

How to lock data in excel sheet using POI, leaving cells without any data / the rest of the sheet unlocked

If the cells in a row have ...READ MORE

Sep 24, 2022 in Others by narikkadan
• 63,600 points
3,510 views
0 votes
1 answer

How to reference Microsoft.Office.Interop.Excel dll?

Use NuGet (VS 2013+): The NuGet package manager ...READ MORE

Oct 9, 2022 in Others by narikkadan
• 63,600 points
2,839 views
0 votes
1 answer

Excel Formula with Nested IF/LEFT/AND Functions

Use this: =IF(SUMPRODUCT(--(LEFT(G3,1)={"1","2","3"}))>0,"998", ...READ MORE

Nov 21, 2022 in Others by narikkadan
• 63,600 points
928 views
0 votes
1 answer

Excel - How can I get the average of cells where the value in one column is X and the value in another column is Y?

Use AVERAGEIFS ... =AVERAGEIFS(C2:C13,A2:A13,"Yellow Typ ...READ MORE

Nov 11, 2022 in Others by narikkadan
• 63,600 points
1,394 views
0 votes
0 answers

How to apply Filter and and copy filter results to another sheet using C# and Excel Interop

I want to apply a filter to ...READ MORE

Nov 27, 2022 in Others by Kithuzzz
• 38,000 points
738 views
0 votes
1 answer

Excel function for divide or split number to maximum possible equal parts

The underlying math for this is as ...READ MORE

Oct 17, 2022 in Others by narikkadan
• 63,600 points
2,465 views