Trending questions in Others

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,420 points
440 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,420 points
316 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
332 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,420 points
437 views
0 votes
0 answers

Simple way to remove blank cells dynamic dropdown list Excel

Every time I create a dependent dynamic ...READ MORE

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

Convert an excel file (xls,xlsx) for PDF

Try this: import java.io.FileInputStream; import ...READ MORE

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

Excel Ribbon Macro not enabled

If you place a breakpoint in one ...READ MORE

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

Excel: Search for a list of strings within a particular string using array formulas?

If a match is detected, this will ...READ MORE

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

Can R do the equivalent of an HLOOKUP nested within a VLOOKUP?

When working in a program like R, ...READ MORE

Nov 11, 2022 in Others by narikkadan
• 63,420 points
547 views
0 votes
1 answer

Want Tick mark and X-mark using current date and current time using Excel formula

I likewise use a checkmark to indicate ...READ MORE

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

Can I show a formula result in a pop-up window in Microsoft Excel?

Yes, you can display the formula result—that ...READ MORE

Nov 12, 2022 in Others by narikkadan
• 63,420 points
488 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,420 points
277 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,420 points
2,566 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,420 points
339 views
0 votes
1 answer

Average TIME Calculation differs between Excel and PowerBI

They are calculating different things. In Power ...READ MORE

Sep 21, 2022 in Others by narikkadan
• 63,420 points
2,720 views
0 votes
1 answer

Find the differences between 2 Excel worksheets?

Place your column in column A of ...READ MORE

Nov 13, 2022 in Others by narikkadan
• 63,420 points
419 views
0 votes
1 answer

Force download excel file not working on web server

Change the content type to Content-Type: application/vnd.ms-excel Or try ...READ MORE

Oct 11, 2022 in Others by narikkadan
• 63,420 points
1,827 views
0 votes
1 answer

Formatting Phone Numbers in PHP

This is a US phone formatter that ...READ MORE

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

How to freeze the top row and the first column using XlsxWriter?

You can use worksheet.freeze_panes() to achieve this . There ...READ MORE

Oct 11, 2022 in Others by narikkadan
• 63,420 points
1,815 views
0 votes
1 answer

Rich text format (with formatting tags) in Excel to unformatted text

This function ought to be helpful if ...READ MORE

Oct 20, 2022 in Others by narikkadan
• 63,420 points
1,423 views
0 votes
1 answer

Alternatives to Subtotal function in excel

In an unused column to the right ...READ MORE

Nov 10, 2022 in Others by narikkadan
• 63,420 points
515 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,420 points
284 views
0 votes
1 answer

Excels INDEX with MATCH for multiple criteria

How to Use INDEX MATCH With Multiple Criteria ...READ MORE

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

Excel cells don't calculate until I double-click them

Select all, find-replace = with =, and ...READ MORE

Nov 7, 2022 in Others by narikkadan
• 63,420 points
611 views
0 votes
1 answer

How to use count and group by at the same select statement

This will do what you want (list of ...READ MORE

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

MS Excel showing the formula in a cell instead of the resulting value

Make sure that... There's an = sign before the formula There's ...READ MORE

Nov 8, 2022 in Others by narikkadan
• 63,420 points
556 views
0 votes
1 answer

'App not Installed' Error on Android

In order to allow installation of apps ...READ MORE

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

Excel How to programmatically hide columns while keeping navigation buttons in view at top

Obviously, this does not help with the ...READ MORE

Nov 8, 2022 in Others by narikkadan
• 63,420 points
552 views
0 votes
1 answer

=CONCATENATE() function giving a #VALUE! error (EXCEL 2013)

You can use the following: =A1&","&B1 TEXTJOIN would also ...READ MORE

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

Excel sumif function with conditions

Try SUMIFS. =sumifs(table1[sum time (sec)],Table1[type],1, Table1[Date],K3, Table1[Time],K4, Table1[Sum Time ...READ MORE

Nov 11, 2022 in Others by narikkadan
• 63,420 points
408 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,420 points
229 views
0 votes
1 answer

How to use VLOOKUP function in MS Excel

Here is the formula for cell G2: ...READ MORE

Nov 13, 2022 in Others by narikkadan
• 63,420 points
312 views
0 votes
1 answer

Export page to excel with logo image

Try this: Response.ContentType = "application/vnd.ms-excel"; ...READ MORE

Oct 18, 2022 in Others by narikkadan
• 63,420 points
1,438 views
0 votes
1 answer

Excel does not show hidden sheet but if i unzip it, then there are 2 worksheets

I now know that an Excel worksheet ...READ MORE

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

Excel formula to average selected cells based on certain criteria

Try: =AVERAGE(IF(X:X=A1,Z:Z)) With Ctrl+Shift+Enter. READ MORE

Nov 13, 2022 in Others by narikkadan
• 63,420 points
308 views
0 votes
1 answer

Is there any way in python to auto-correct spelling mistake in multiple rows of an excel files of a single column?

Use Spellchecker for doing your stuff: import pandas ...READ MORE

Oct 14, 2022 in Others by narikkadan
• 63,420 points
1,599 views
0 votes
1 answer

How To Use VBA To Share Excel File With Fellow Office User?

PowerApps were referenced; if you have a ...READ MORE

Oct 28, 2022 in Others by narikkadan
• 63,420 points
996 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,420 points
260 views
0 votes
1 answer

Excel get percentage of difference between numbers?

Find the percentage of change between two ...READ MORE

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

How to format numbers in excel in crores or lacks

Try this: =TEXT(A1/10000000,"#,### \cr") READ MORE

Nov 6, 2022 in Others by narikkadan
• 63,420 points
600 views
+1 vote
1 answer

Excel macro to make selected range absolute or relative reference?

Try  this: Sub ConverReferenceType() On ...READ MORE

Oct 23, 2022 in Others by narikkadan
• 63,420 points
1,158 views
0 votes
1 answer

Is there a way to use LOOKUP/VLOOKUP/HLOOKUP to return headers in EXCEL. Current formula returning wrong value

Try this: =SUMPRODUCT(--(Schedule!$B$3:$F$7=A3)) READ MORE

Nov 6, 2022 in Others by narikkadan
• 63,420 points
585 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,420 points
217 views
0 votes
1 answer

Add some word to all or some rows in Excel?

Solution: Select All cells that want to change. Right ...READ MORE

Nov 11, 2022 in Others by narikkadan
• 63,420 points
347 views
0 votes
1 answer

Excel dropdown with name/value pairs

Solution Define a range to use as the ...READ MORE

Oct 7, 2022 in Others by narikkadan
• 63,420 points
1,855 views
0 votes
1 answer

How do I align a UserForm next to the active cell?

Answer to Q1 - Yes, it's correct. In ...READ MORE

Oct 27, 2022 in Others by narikkadan
• 63,420 points
989 views
0 votes
0 answers

Format an Excel column (or cell) as Text in C#?

When I copy values from a data ...READ MORE

Oct 31, 2022 in Others by Kithuzzz
• 38,010 points
824 views
0 votes
1 answer

Obtaining Excel worksheet reference by worksheet name via C#

Instead of using Excel.Workbook.Sheets collection, it's easier to access Excel.Workbook.Worksheet collection, ...READ MORE

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

Pivot Chart Table in Excel To Calculate the Count and Display the Chart

It should look something like this: READ MORE

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

Excel offset where reference is to another worksheet

Solution:  =OFFSET((INDIRECT(ADDRESS(1,1,,,"Sheet2")),ROW(),0,,) References: OFFSET(starting point, num of rows, num ...READ MORE

Oct 8, 2022 in Others by narikkadan
• 63,420 points
1,801 views