Trending questions in Others

0 votes
1 answer

Standard deviation only for data that meets two conditions in Excel

I would say: =STDEV.S(IF((A2:A11="A")*(B2:B11="Z1"),C2:C11,"")) ...READ MORE

Dec 16, 2022 in Others by narikkadan
• 63,700 points
331 views
0 votes
1 answer

Excel VLOOKUP between two sheets failing

Try this: =VLOOKUP(A2,'1'!$A$2:$E$811,5,0) I altered "1"! $A$2:$A$811 to '1'! ...READ MORE

Dec 13, 2022 in Others by narikkadan
• 63,700 points
451 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,509 views
0 votes
0 answers

Merge rows based on value (pandas to excel - xlsxwriter)

I'm attempting to use xlsxwriter to output ...READ MORE

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

Python - how to read contents of an excel file

xlwings is an excellent library to interact with ...READ MORE

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

What would I have to add to this VBA Code to keep Undo Button working after it runs?

VBA eliminates Excel's undo function. Though it ...READ MORE

Dec 16, 2022 in Others by narikkadan
• 63,700 points
275 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,475 views
0 votes
1 answer

Cannot detect strikeout data from excel using apache poi

You must first obtain the RichTextString, then ...READ MORE

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

How to break area chart in excel

Add an extra row between your areas. READ MORE

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

How do I avoid repeating long formulas in Excel when working with comparisons?

Try this: =IFERROR(EXP(LN(REALLY_LONG_FORMULA – threshold)) + threshold, 0) The ...READ MORE

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

Flutter local notification doesn't work for iOS

I added This line in the "AppDelegate.swift" ...READ MORE

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

Excel how to fill all selected blank cells with text

Do the following to place the same ...READ MORE

Dec 16, 2022 in Others by narikkadan
• 63,700 points
226 views
0 votes
1 answer

Add user-defined function (UDF) to built-in category in Excel

Use Application.MacroOptions This example adds a user-defined macro ...READ MORE

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

Excel: VLOOKUP from a different Sheet

The worksheet name must be included in ...READ MORE

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

Excel Lookup function for text

Use a simple VLOOKUP() function like: =VLOOKUP(E2,$A$2:$B$6,2,FALSE) You can also use ...READ MORE

Dec 13, 2022 in Others by narikkadan
• 63,700 points
328 views
0 votes
1 answer

How to remove or delete comments in excel worksheet?

Get a range, then clear comments: Worksheets("MySheet").Activate ActiveSheet.UsedRange.ClearComments I ...READ MORE

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

How to remove values from drop-down if value deleted from validation list

Try this code: Private Sub Worksheet_Change(ByVal Target As ...READ MORE

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

What does the " @ " symbol mean in Excel formula (outside a table)

Excel has recently introduced a huge feature ...READ MORE

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

Convert Excel to PDF using JavaScript

You're clobbering objExcel on line 15: var objExcel ...READ MORE

Oct 9, 2022 in Others by narikkadan
• 63,700 points
3,122 views
0 votes
1 answer

How to add Indian Rupee Currency symbol in Google Spreadsheet

To apply a custom currency format to ...READ MORE

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

Excel concatenate function with multiple conditions

Use this : =TEXTJOIN(", ";TRUE;IF((Table69[Spec]=$B$1)*(Table69[Sl ...READ MORE

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

Excel If Functions with Multiple Conditions

Use this: =IF(C3<=0,"Green",IF(C3<500,"Silver",IF(C3<=1499,"Gold","Platinum"))) I added <=0 just in case you have ...READ MORE

Dec 13, 2022 in Others by narikkadan
• 63,700 points
288 views
0 votes
1 answer

Integrating address verification based on pincode and vice versa for Indian Pincode

The other website you pointed to () ...READ MORE

Dec 13, 2022 in Others by narikkadan
• 63,700 points
272 views
0 votes
1 answer

Excel VBA code window opened cropped and can't view code

So it turns out after some online ...READ MORE

Dec 13, 2022 in Others by narikkadan
• 63,700 points
272 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,476 views
0 votes
1 answer

Excel Formula calculating the starting date of a given calendar week

The number of days to take into ...READ MORE

Dec 10, 2022 in Others by narikkadan
• 63,700 points
416 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,344 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,700 points
321 views
0 votes
1 answer

How to download and setup sqlplus for running sql commands?

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

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

Excel/Python: How to group names alphabetically section wise such that each group has equal number of Alphabets?

Here is a flimsy answer. The number ...READ MORE

Dec 10, 2022 in Others by narikkadan
• 63,700 points
364 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,333 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,098 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,700 points
545 views
0 votes
1 answer

Excel is saying zero is not equal to zero

It is a floating point error. Increase ...READ MORE

Dec 10, 2022 in Others by narikkadan
• 63,700 points
541 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,257 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
992 views
0 votes
1 answer

Calculate the mean from excel sheet for specific rows

Generate a list for each means you ...READ MORE

Dec 10, 2022 in Others by narikkadan
• 63,700 points
534 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,700 points
252 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,700 points
528 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,700 points
510 views
0 votes
1 answer

Calculate Monthly Highest Selling Product - MS Excel

Use a Pivot Table to summarize the ...READ MORE

Nov 12, 2022 in Others by narikkadan
• 63,700 points
1,461 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
942 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,700 points
260 views
0 votes
1 answer

Calculating the mean and std on excel file using python

Use pandas to do this: import pandas as pd df = ...READ MORE

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

Excel formula that combines MATCH, INDEX and OFFSET

Try this: =INDEX((OFFSET(SheetA!F:F,0,SheetA!A1)),MATCH(SheetB!C4, ...READ MORE

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

Formula to convert KG,MB,GB,TB to GB in excel

Use this array formula: =LEFT(A1,MIN(IFERROR(FIND({"KB","MB","GB","TB"},A1),1E+99))-1)/INDEX({1048576,1024,1,0.0009765625},MATCH(RIGHT(A1,2),{"KB","MB","GB","TB"},0)) & "GB" Being an ...READ MORE

Oct 31, 2022 in Others by narikkadan
• 63,700 points
1,894 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,028 views
0 votes
1 answer

What is the better API to Reading Excel sheets in java - JXL or Apache POI

Here are the things where both APIs ...READ MORE

Oct 9, 2022 in Others by narikkadan
• 63,700 points
2,818 views