Forum Discussion
giorgionway
6 years agoFrequent Visitor
work attendance
hello, got data from time attendance machine and want to create report and stuck. first pic is data and i want to get pivot (pic 2), i know its easy but couldnt create calendar right. anyone help? t...
- Anonymous6 years ago
Hi giorgionway ,
If you mean extract the total hours based on 'in', 'out' fields, you can try to use the following query:
let Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WCknKzMkszlTSUXJPzS9KTwUyDI30DA30DC0VDA2sDAyQBYyMQAKxOsjaXBLLMlNQdBmi6zKE6XJKLCnNBWnyy8xLRFZiia7FANMiFPcZorvPkBj3GaK7z5Cw+wzR3GeI5L5YAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [City = _t, #"Worker Name" = _t, In = _t, Out = _t]), #"Changed Type" = Table.TransformColumnTypes(Source,{{"City", type text}, {"Worker Name", type text}, {"In", type datetime}, {"Out", type datetime}}), #"Grouped Rows" = Table.Group(#"Changed Type", {"Worker Name"}, {{"Contents", each Table.AddColumn(Table.AddColumn(_,"Date",each Date.From([Out])),"Hour",each Duration.TotalHours([Out]-[In])), type table}}), #"Expanded Contents" = Table.ExpandTableColumn(#"Grouped Rows", "Contents", {"Date", "Hour"}, {"Date", "Hour"}), #"Pivoted Column" = Table.Pivot(Table.TransformColumnTypes(#"Expanded Contents", {{"Date", type text}}, "en-US"), List.Distinct(Table.TransformColumnTypes(#"Expanded Contents", {{"Date", type text}}, "en-US")[Date]), "Date", "Hour", List.Sum) in #"Pivoted Column"If above not meet for your requirement, can you please explain more about the logic about transforming your date fields?
How to Get Your Question Answered Quickly
Regards,
Xiaoxin Sheng
MFelix
Super User
6 years agoHi @giorgiinway,
There are several options to achieve this checks a list of post that have similar questions that may help you achieve expected result.
https://community.powerbi.com/t5/forums/searchpage/tab/message?advanced=false&allow_punctuation=false&q=Active%20employees
If you don't find the answer you need please tell me and I can try to assist you.
Regards,
MFelix
There are several options to achieve this checks a list of post that have similar questions that may help you achieve expected result.
https://community.powerbi.com/t5/forums/searchpage/tab/message?advanced=false&allow_punctuation=false&q=Active%20employees
If you don't find the answer you need please tell me and I can try to assist you.
Regards,
MFelix
giorgionway
6 years agoFrequent Visitor
i couldnt find the answer. could you help me?