684 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
12
views
How I can split a cell which contains a text to different rows whithout loosing whole sheet format?
enter image description here image from a part of my spread sheet.
how can I divide rows number 35-37 to a single row like 34. In the image for example names and numbers are in wrapped text format but ...
-3
votes
2
answers
58
views
PYTHON: Trying to divide elements alternately from a list to two already existing sublists in another list. No imports please
For context, I have a list of "players" ready. Let's say players = ['steve','gary','simon','kevin'].
And I also have a list with two sublists with a "leader" in each of them: ...
-1
votes
2
answers
80
views
Why is my query just returning O's instead of the percentages of the whole?
I attempted to divide to see the percentage each, medical practice provides of the data and nothing came out, just zeros in each row. enter image description here
I attempted to convert it into a ...
-1
votes
1
answer
75
views
Get percentages in query [duplicate]
Thank you for your assistance.
I can't get it to divide? Is it because its the Modulo operator?
I've reviewed and scoured the web for a bit, but it just doesn't seem to be working.
How do I get a ...
0
votes
0
answers
33
views
error due to dividing number multiple time in nodejs
I have to set a target for a comapny's user and those user are formed in tree hierarchy, so here the target set for one person will be divided to child in tree structure. Now the problem is whenever ...
-1
votes
1
answer
36
views
problem with division, divided by datetime and int
I have dataFrame, two columns:
first is result['days'] int type,
second is result['time'], datetime.time type. It's sum of time like 02:27:39
What I want is new column = result['time'] / result['...
0
votes
1
answer
147
views
MARIE, multiply 2 numbers and divide final result by 2
/len = length, hei = height
/get and store input
input
store LEN
input
store HEI
/start of loop
/load in the value of len
LOOP, load LEN
/add len to num
add NUM
/store the value in num
Store NUM
/...
0
votes
2
answers
212
views
Can anyone help me to find error in this code
import java.util.Scanner;
public class MinMaxDivideConquer {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("Enter the ...
1
vote
1
answer
42
views
Separate the time between its days when the period days two or more days
I gave up after trying to separate a dataframe into different rows depending the days that the period takes place.
This is the dataframe and, as we can see, all rows start in a different day that they ...
1
vote
2
answers
239
views
Apply divide formula to entire row in macro on Excel?
I am tring to fix a problem.
Like Copy / Special Pasta - divide, i would like to do it in VBA.
For example, I have numbers from A to AA.
I want to divide the range A5:AA5 by 2 completely.
It’s like a ...
-1
votes
4
answers
446
views
when doing dividing operations in pandas, i always get 'NAN' results. how can I solve the problem?
I want to make column 'ratio' that is the result after each value of the column 'amount' divides the last value of the column 'amount'. the data type of amount column is int64. After changing the data ...
-1
votes
1
answer
59
views
How to divide int * type? [closed]
I'm trying to find from input to if is "Armstrong Number" or not. Here's my code. Probably I have another arrow but I can't divide (/) or multiplication (*) with int * variables. Why is ...
-3
votes
1
answer
38
views
PHP Division isn't calculating property, help please [closed]
I have one variable ($TotalCountyTaxAmount) I want to divide by 365 to calculate a daily tax rate. In this example the variable value is 1614.21. When I divide the variable by the number of days (e.g. ...
1
vote
1
answer
117
views
How to divide an array of size (a,n,m) by an array of size (a,)?
I have two arrays: X of size (500, 10, 10) and Y with size (500,). I need to divide each (10x10) array in X by the corresponding element in Y.
for i in range(500):
value[i] = X[i]/Y[i]
However, I ...
-1
votes
1
answer
388
views
How to divide total and single value in one column using PowerBI?
I do need your favor. I need to do calculation by divide a total column with single value in that column itself.
Here is the my table looks like:
My expectation is, I need to divide one of the ...