Latest questions in Others

0 votes
1 answer

How to clear contents of an Excel Workbook through vba

When the range you're referring to doesn't ...READ MORE

Nov 19, 2022 in Others by narikkadan
• 63,700 points
582 views
0 votes
1 answer

Spell check an Excel sheet in VBA

Use this code to check the whole ...READ MORE

Nov 19, 2022 in Others by narikkadan
• 63,700 points
431 views
0 votes
1 answer

Adding column to Excel using Apache POI

The quickest way to add a column ...READ MORE

Nov 19, 2022 in Others by narikkadan
• 63,700 points
1,767 views
0 votes
1 answer

Sending excel data to Tally

You can use Requests to send the ...READ MORE

Nov 19, 2022 in Others by narikkadan
• 63,700 points
642 views
0 votes
1 answer

How to read single Excel cell value

You need to cast it to a ...READ MORE

Nov 19, 2022 in Others by narikkadan
• 63,700 points
440 views
0 votes
1 answer

Referencing an Excel file, workbook, worksheet in C#

Try the following code. using System; using System.Data; using Excel ...READ MORE

Nov 19, 2022 in Others by narikkadan
• 63,700 points
577 views
0 votes
1 answer

Camel case converter in an excel

Try this: =LOWER(LEFT(A1)) & MID(SUBSTITUTE(PROPER(A1),"_","") ...READ MORE

Nov 19, 2022 in Others by narikkadan
• 63,700 points
2,890 views
0 votes
1 answer

Hyperlink changes from # to %20-%20 when clicked in Excel

This is a known issue with MS Excel. Basically, ...READ MORE

Nov 19, 2022 in Others by narikkadan
• 63,700 points
492 views
0 votes
1 answer

Rails - Export records to downloadable excel file using axlsx gem (Keep MVC)

Use  axlsx_rails Gem with the template. In my case, ...READ MORE

Nov 19, 2022 in Others by narikkadan
• 63,700 points
1,696 views
0 votes
1 answer

How to merge columns in Excel but keep data on other columns

VLOOKUP indeed can be used here, combined ...READ MORE

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

Python/Openpyxl: change cell A1 in all excel worksheets within a workbook to equal the name of the worksheet tab

You made a mistake when you used ...READ MORE

Nov 17, 2022 in Others by narikkadan
• 63,700 points
1,017 views
0 votes
1 answer

Is it possible to round to different decimal places in excel based on the range?

Where the range is multiple cells: Excel.Worksheet sheet ...READ MORE

Nov 17, 2022 in Others by narikkadan
• 63,700 points
450 views
0 votes
1 answer

How do I get an Excel range using row and column numbers in VSTO / C#?

Use: int countRows = xlWorkSheetData.UsedRange.Rows.Count; int countColumns = xlWorkSheetData.UsedRange.Columns.Count; object[,] ...READ MORE

Nov 17, 2022 in Others by narikkadan
• 63,700 points
1,319 views
0 votes
1 answer

Excel Consolidate Data not working - Data does not merge

This is so that letters cannot be ...READ MORE

Nov 17, 2022 in Others by narikkadan
• 63,700 points
1,449 views
0 votes
1 answer

Python Excel Writer (xlswriter) Insert Image from URL

Use this: url = "..../picture.jpg" data = urllib.request.urlopen(url).read() file = ...READ MORE

Nov 17, 2022 in Others by narikkadan
• 63,700 points
1,489 views
0 votes
1 answer

Export many small DataFrames to a single Excel worksheet

Try  this: from pandas import ExcelWriter def dfs2xlsx(list_dfs,xls_path = ...READ MORE

Nov 17, 2022 in Others by narikkadan
• 63,700 points
340 views
0 votes
1 answer

Is there a way to transfer MSWord numbering bullets to MSExcel column?

Your numbered bullets can be copied from ...READ MORE

Nov 17, 2022 in Others by narikkadan
• 63,700 points
314 views
0 votes
1 answer

Find function to locate result of a formula, in a cell

There are several attributes to the Find ...READ MORE

Nov 17, 2022 in Others by narikkadan
• 63,700 points
275 views
0 votes
1 answer

PHPExcel freeze row and columns

You must be attempting to Freeze both ...READ MORE

Nov 17, 2022 in Others by narikkadan
• 63,700 points
1,221 views
0 votes
1 answer

Excel MATCH function is not working on an array but works once directed to the matched value

According to the definition here: support.microsoft.com/en-us/office/… if you do ...READ MORE

Nov 17, 2022 in Others by narikkadan
• 63,700 points
677 views
0 votes
0 answers

How to merge two sorted arrays into a sorted array?

this question was asked in interview  public static ...READ MORE

Nov 17, 2022 in Others by Ashwini
• 5,430 points
338 views
0 votes
1 answer

Historical Yahoo Finance API On Fritz Again?

It appears that Yahoo updated its finance ...READ MORE

Nov 17, 2022 in Others by narikkadan
• 63,700 points
1,711 views
0 votes
1 answer

Count cells in excel with populated values

Use: =SUMPRODUCT(--(CHOOSE({1,2,3,4,5},A1, A4, A6, A8, A10)<> ...READ MORE

Nov 17, 2022 in Others by narikkadan
• 63,700 points
323 views
0 votes
1 answer

Showing percentages above bars on Excel column graph

Solution  Use a line series to show the ...READ MORE

Nov 17, 2022 in Others by narikkadan
• 63,700 points
282 views
0 votes
1 answer

Excel - IF combined with Index Match

Try: =IFERROR(IF(ISNUMBER(O2),VLOOKUP(A2,Sheet2!$C$2:$E$10,3,FALSE),""),"") =IFERROR(IF(ISNUMBER(O2),INDEX(Sheet2!$E$2:$E$10,MATCH(A2,Sheet2!$C$2:$C$10,0)),""),"") where the first "" means that O2 is not a number, ...READ MORE

Nov 17, 2022 in Others by narikkadan
• 63,700 points
498 views
0 votes
1 answer

Can a worksheet ActiveX ComboBox work on a Mac?

ActiveX is an outdated Windows technology that ...READ MORE

Nov 17, 2022 in Others by narikkadan
• 63,700 points
408 views
0 votes
1 answer

How to find a value in an excel column by vba code Cells.Find

Just use: Dim Cell As Range Columns("B:B").Select Set cell = ...READ MORE

Nov 17, 2022 in Others by narikkadan
• 63,700 points
3,064 views
0 votes
1 answer

Using office scripts to read superScripts characters from a cell in excel online

My understanding is that superscript and subscript ...READ MORE

Nov 17, 2022 in Others by narikkadan
• 63,700 points
561 views
0 votes
1 answer

Excel is not updating cells, options > formula > workbook calculation set to automatic

This occurred to me today in a ...READ MORE

Nov 17, 2022 in Others by narikkadan
• 63,700 points
418 views
0 votes
1 answer

How to increment row value in an index function in excel?

Try this- =INDEX($F$27:$F$40,COLUMN(A$1)) It will automatically increase the row ...READ MORE

Nov 17, 2022 in Others by narikkadan
• 63,700 points
1,311 views
0 votes
1 answer

Excel VBA - Delete empty rows

Try this: sub foo() dim r As ...READ MORE

Nov 17, 2022 in Others by narikkadan
• 63,700 points
656 views
0 votes
1 answer

Removing all page breaks from a Crystal Reports 2016 v14 -> Excel export

Try ExportFormatType.ExcelRecord instead of ExportFormatType.Excel. It will ...READ MORE

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

How do I insert a WebP-image (".jpg") in Excel using VBA?

It's not currently on the list of ...READ MORE

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

Reversing Text to Columns in Excel/Calc

There are built-in functions that will allow ...READ MORE

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

How can I format bytes a cell in Excel as KB, MB, GB etc?

In Excel's formatting features, computations are not ...READ MORE

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

How should I show the Developer tab in Excel using Macros? (Excel VBA)

You can activate (mode=1) or deactivate (mode=0) ...READ MORE

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

Python: Convert PDF to DOC

Install LibreOffice and try this: lowriter --invisible --convert-to ...READ MORE

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

Excel chart a line per category

Pivot charts, in my opinion, are the ...READ MORE

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

Excel Power Pivot/Data Model

Here is the answer for your question: ...READ MORE

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

MAX function in Excel: is it possible to provide the range by means of variables?

Try this: =MAX(INDEX(A:A,B2):INDEX(A:A,B3)) READ MORE

Nov 15, 2022 in Others by narikkadan
• 63,700 points
350 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,700 points
891 views
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,700 points
1,208 views
0 votes
1 answer

Way to run Excel macros from command line or batch file?

Solution Open the workbook and run the macro ...READ MORE

Nov 14, 2022 in Others by narikkadan
• 63,700 points
5,899 views
0 votes
1 answer

Using c# to select a worksheet in excel

Try this: Excel.Worksheet xlWorkSheetFocus = (Excel.Worksheet)xlWorkBook.Worksheets.get_Item(2); xlWorkSheetFocus.Activate(); I hope this ...READ MORE

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

Creating an unique export data VBA Macro Function in Excel

Unfortunately, the tables will vary in size. ...READ MORE

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

Excel remaining days count from today until due date minus weekends?

The problem is that you are not ...READ MORE

Nov 14, 2022 in Others by narikkadan
• 63,700 points
270 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,700 points
1,087 views
0 votes
1 answer

I have filtered my Excel data and now I want to number the rows. How do I do that?

Solution Filter your data. Select the cells you want ...READ MORE

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

Is there a function in excel to find duplicates

Solution: You can use Conditional formatting inside the ...READ MORE

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

Avoiding index & match #N/A value

Use IFERROR to set an alternative value if the ...READ MORE

Nov 14, 2022 in Others by narikkadan
• 63,700 points
219 views