excel-formula

Finding overlapping employees in departments using excel

Finding overlapping employees in departments using excel Question: I have my reference data which looks like this. I’m trying to create a calendar using weekdays and 5 time slots as shown below. Using the calendar, I want to identify if there are any potential clashes between departments. What I mean by that is: On any …

Total answers: 1

Algorithm to calculate number of child per each parent from excel file

Algorithm to calculate number of child per each parent from excel file Question: I have an excel file containing 2 columns & 763 row, screenshot : parent-child file Those strange strings is just a code for a mobile sites. As a description, this file has in both columns a mobile sites names, and as you …

Total answers: 1

Rank Column in Excel based on matching multiple columns

Rank Column in Excel based on matching multiple columns Question: I have a table that looks like the following: I’m trying to rank share of yards by game by position by team. I tried using rank.eq(index(filter())) but rank.eq seems to not accept this input. I’m also willing to use pandas and python if you know …

Total answers: 1

How can I calculate and hide my formulas in excel

How can I calculate and hide my formulas in excel Question: I have an excel file with a few sheets. After loading data to some sheets, the main sheet formulas must calculate some data. But if I tried to load only data from the file, it s empty because, until I open the excel file, …

Total answers: 1

Priority formula in excel or python pandas

Priority formula in excel or python pandas Question: Let’s say there are two columns in Excel: A B [email protected] [email protected] [email protected] [email protected] [email protected] noemail [email protected] I want to put a condition such as: A B C [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] noemail [email protected] [email protected] [email protected] Setting priority to B and if not available …

Total answers: 2

"@" symbol appearing after inserting IF formula into excel using Openpyxl

"@" symbol appearing after inserting IF formula into excel using Openpyxl Question: My goal is to use enter this formula into Excel using Openpyxl. =CORREL(IF(A2:A7;A2:A7);B2:B7) The reason for the IF formula is to ignore the cells that have 0 inside, which are not ignored by the CORREL function by default. When inserting this formula into …

Total answers: 3

Calculate Scipy LOGNORM.CDF() and get the same answer as MS Excel LOGNORM.DIST

Calculate Scipy LOGNORM.CDF() and get the same answer as MS Excel LOGNORM.DIST Question: I am reproducing a chart in a paper using the LOGNORM.DIST in Microsoft Excel 2013 and would like to get the same chart in Python. I am getting the correct answer in excel, but not in python. In excel the I have, …

Total answers: 2