Trending questions in Others

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,620 points
405 views
0 votes
1 answer

How to create and download excel document using asp.net

First, download the Open XML Format SDK 2.0. It comes ...READ MORE

Oct 3, 2022 in Others by narikkadan
• 63,620 points
2,500 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,620 points
440 views
0 votes
1 answer

When doing a MERGE in Oracle SQL, how can I update rows that aren't matched in the SOURCE?

I see you asked it a long ...READ MORE

Nov 7, 2022 in Others by gaurav
• 23,260 points
991 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,620 points
431 views
0 votes
1 answer

How to hide and unhide the columns of an excel sheet using asp.net

Use this. For Row: worksheet_sub.Row(i).Height = 0; For Column: ...READ MORE

Oct 29, 2022 in Others by narikkadan
• 63,620 points
1,336 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,620 points
382 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,620 points
378 views
0 votes
1 answer

Calculate slope and intercept value for logarithmic trendline as excel

You missed Math.log() for ln() in Excel. ...READ MORE

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

Convert table in a jpg image to excel using python

I believe you must execute OCR (optical ...READ MORE

Oct 16, 2022 in Others by narikkadan
• 63,620 points
1,884 views
0 votes
2 answers

Disable AWS S3 Management Console

Yes, it is possible to disable the ...READ MORE

Jun 20, 2023 in Others by Khan Sarfaraz
• 700 points
545 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,620 points
497 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,620 points
448 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,620 points
278 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,620 points
275 views
0 votes
1 answer

Create a pie chart of ages, showing under 30's, 30-50's, and over 50's

Two things: A pie chart does not aggregate ...READ MORE

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

SQL Error: ORA-00933: SQL command not properly ended

Installing SQLPlus on Windows: Step 1: First browse ...READ MORE

Nov 7, 2022 in Others by gaurav
• 23,260 points
947 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,620 points
2,079 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,620 points
2,831 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,620 points
555 views
0 votes
1 answer

Excel date format mismatch

Due to the fact that the "dates" ...READ MORE

Oct 30, 2022 in Others by narikkadan
• 63,620 points
1,230 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,620 points
526 views
0 votes
1 answer

Formula for inserting a thumbnail picture into excel cell, based on another cell's value

Here is a really excellent tutorial on ...READ MORE

Oct 31, 2022 in Others by narikkadan
• 63,620 points
1,173 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,620 points
2,780 views
0 votes
1 answer

(Excel) If cell is greater than <condition> then minus <number>

The IF function to calculate B5 (amount ...READ MORE

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

Is there a function to unhide columns in excel through python

Excel file : df.to_excel('demofile.xlsx',index=False) import openpyxl py = openpyxl.load_workbook('demofile.xlsx') exlsheet = ...READ MORE

Oct 18, 2022 in Others by narikkadan
• 63,620 points
1,719 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,620 points
502 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,620 points
418 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,620 points
408 views
0 votes
1 answer

Use R to create chart in Excel sheet

Here is a solution utilizing the XLConnect ...READ MORE

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

Uipath(RPA) : read data from the PDF file and write to Excel file

If you want to use UiPath and ...READ MORE

Oct 17, 2022 in Others by narikkadan
• 63,620 points
1,740 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,620 points
526 views
0 votes
1 answer

Determine if calculation between 2 date time values is < 72 Hours in excel

Actually, Excel is quite accommodating in this ...READ MORE

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

'Microsoft.Office.Interop.Excel.Range' does not contain a definition for 'get_Default'

You are using C# version 4, the ...READ MORE

Oct 16, 2022 in Others by narikkadan
• 63,620 points
1,767 views
0 votes
1 answer

How to convert .xls to .pdf via PHP?

You can use PHPExcel to read the XLS ...READ MORE

Nov 8, 2022 in Others by narikkadan
• 63,620 points
768 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,620 points
339 views
0 votes
1 answer

Writing python code on android

Download Pydroid 3 – IDE for Python ...READ MORE

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

Shape Names In Excel

Try this: Option Explicit Sub Button1_Click() ...READ MORE

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

Using standard deviation function in excel for a specific criteria?

Use this: =STDEV(IF((A1:A1000>=-0.5)*(A1:A1000<=0.5),A1:A1000)) Depending on one's version this may ...READ MORE

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

Excel Drop down list using Apache POI

To set a default value, just setCellValue("first_item_value"); she ...READ MORE

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

How can I convert excel file to pdf using TCPDF?

PHPExcel can only read charts from Excel2007 ...READ MORE

Oct 21, 2022 in Others by narikkadan
• 63,620 points
1,524 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,620 points
314 views
0 votes
1 answer

Pivot Tables in MS Excel (Office 365)

If you create the required result table ...READ MORE

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

How can I convert a Word document to PDF?

This is a difficult task, made even ...READ MORE

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

Apache POI. Setup data filters in Excel

It's already enabled in Apache POI 3.7. ...READ MORE

Oct 21, 2022 in Others by narikkadan
• 63,620 points
1,504 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,620 points
421 views
0 votes
1 answer

Help needed with Median If in Excel

Try entering the formula =MEDIAN(IF($A$1:$A$6="Airline",$B$1:$B$6,"")) in another ...READ MORE

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

Rename Excel worksheets from range

Rename Worksheets Using a List There are a ...READ MORE

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

How to add check symbol in excel cell SXSSFSheet java

Try this: import java.io.FileOutputStream; import org.apache.poi.xssf.streaming.*; class CreateSXSSFUnicode { public ...READ MORE

Nov 13, 2022 in Others by narikkadan
• 63,620 points
501 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,620 points
449 views