Most voted questions in Others

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,700 points
607 views
0 votes
1 answer

Excel graphics with ggplot2

Excel's pseudo-3D charts are choked full of ...READ MORE

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

How do I transpose a column to a matrix in Excel?

With data in column A, pick some cells ...READ MORE

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

PHPExcel generated excel file not auto-calculating formula

By recalculating on the server side, it ...READ MORE

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

How to add text on new page in word doc via excel vba

First start with: objDoc.Range.Insertafter vbCr & Chr(12) & ...READ MORE

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

Concatenate columns using LEFT and RIGHT in EXCEL

It's conceivable that the Concat/Concatenate function isn't ...READ MORE

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

Parsing from Excel multisheet file: List comprehension between columns

You can use read_excel with parameter sheetname=None for return all sheets ...READ MORE

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

VBA to protect and unprotect in given range in sheet

It needs a minor tweak to become ...READ MORE

Nov 24, 2022 in Others by Kithuzzz
• 38,010 points
1,980 views
0 votes
1 answer

How to keep one variable constant with other one changing with row in excel

Use this form: =(B0+4)/$A$0 Since you are dragging across ...READ MORE

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

Prompt message if Excel column has some value in asp.net c#

I believe it is wise to use ...READ MORE

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

How to look in all folders in directory to change file extensions of excel file?

Loop Through All Subfolders Using VBA Dim strCurrentFileExt ...READ MORE

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

PHPExcel file cannot open file because the file format or file extension is not valid

Just change the code to this: // Save Excel ...READ MORE

Nov 24, 2022 in Others by narikkadan
• 63,700 points
4,626 views
0 votes
1 answer

How can I store the data of an open excel workbook in a collection using BluePrism?

To do what you want is like ...READ MORE

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

How to insert a new row in the specified cell only, of Excel sheet using c#?

I have this worksheet with a matrix ...READ MORE

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

How to use Excel VLOOKUP function with words that begin with the letters AB

If you lookup "AB" in Excel, it ...READ MORE

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

How can i add cells if condition is met

Both the AND function and nested if ...READ MORE

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

How to use an increment an average formula by more than one row in excel?

I believe OFFSET makes it simpler, for ...READ MORE

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

Excel formula to replace or stubstitute only text that starts with a certain letter

You're requesting a "formula." Normally, you would ...READ MORE

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

Trouble pasting a Word equation into Excel

Use this: Sub ExpandEqn(MyText As String) ...READ MORE

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

Using "If cell contains #N/A" as a formula condition.

Input the following formula in C1: =IF(ISNA(A1),B1,A1*B1) Screenshots: When #N/A: When not ...READ MORE

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

Generate VCards from Excel using VBA

Solution  Create a class called CContact with getters ...READ MORE

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

How to automatically nest rows of an Excel spreadsheet using level values?

More grouping levels have been added to ...READ MORE

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

How do delete an specific page in a word document using Excel VBA?

Check the code below. I eliminated the ...READ MORE

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

Cell character counting formula?

With data in column A, in B1 enter: =SUMPRODUCT(--(LEN(A:A)=ROW())) Then copy downwards: I ...READ MORE

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

How to fix a circular reference error by if condition in excel file?

Circular reference in this context refers to ...READ MORE

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

Excel - function to convert first letter of each word to uppercase

there are two methods to do this: Method ...READ MORE

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

Excel: Cross-sheet reference not working

There are 2 possible things: Make sure the ...READ MORE

Nov 20, 2022 in Others by narikkadan
• 63,700 points
7,810 views
0 votes
1 answer

Return empty cell from formula in Excel

There is no way to do this ...READ MORE

Nov 20, 2022 in Others by narikkadan
• 63,700 points
4,235 views
0 votes
1 answer

How to remove gridlines on select cells in Google Sheets?

The google sheets don't have an exact ...READ MORE

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

In MS Excel what formula can be used to calculate growth when CAGR for the period is already given?

If those are true CAGR's, then just ...READ MORE

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

Saving style of the header of StyleFrame.object to_excel

The correct way to style the headers ...READ MORE

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

How can solve this Solver Excel like problem in R?

More details and explanations are required so ...READ MORE

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

Paste special issue, From Excel to Word

Since the table in the word document ...READ MORE

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

Excel SUMIFS() using string with greater/less than symbols

Put an = in front to let Excel know ...READ MORE

Nov 20, 2022 in Others by narikkadan
• 63,700 points
378 views
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,766 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
641 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,889 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