Hi,
I am trying to build a table of EMP headcounts based of their Hours working group,. The dataset is like;
Job EMP Names Total
Civil James 200
Civil Paul 2000
Pipe Paul 4000
Pipe Troy 700
Market Tom 500
I have;
And below is the folmula that I am using;
Solved! Go to Solution.
If you are not doing any aggregation on Append1[Total].
Create a new column in the append table and use it?
Bucket =
Switch(true(),
Append1[Total]<=250,"0 to 250",
Append1[Total]<=500,"250 to 550",
Append1[Total]<=1000,"500 to 1000",
Append1[Total]<=2000,"1000 to 2000",
Append1[Total]<=2000,"2000 to 4000",
"Over 4000"
)
Proud to be a Super User!
You need to Create a calculated table not column or measure.
You need to Create a calculated table not column or measure.
If you are not doing any aggregation on Append1[Total].
Create a new column in the append table and use it?
Bucket =
Switch(true(),
Append1[Total]<=250,"0 to 250",
Append1[Total]<=500,"250 to 550",
Append1[Total]<=1000,"500 to 1000",
Append1[Total]<=2000,"1000 to 2000",
Append1[Total]<=2000,"2000 to 4000",
"Over 4000"
)
Proud to be a Super User!
User | Count |
---|---|
464 | |
205 | |
116 | |
58 | |
58 |
User | Count |
---|---|
480 | |
253 | |
145 | |
78 | |
73 |