March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello all, I am new to paginated reports.
I am working on a time report and having a weird issue. I am building a report that lists each employee and their time, grouped by date and location. Each person will have a number of hours worked over several days, and the times can have different types such as REG, OT, VAC and such. I then want to do totals for each type of hours for each employee and grand totals at the end.
Here is what my design view looks like :
The expressions above are
=Sum(IIF(Fields!cr242_typeworked.Value="REG",Fields!cr242_hoursworked.Value,0))
=Sum(IIF(Fields!cr242_typeworked.Value="OT",Fields!cr242_hoursworked.Value,0))
And so on. The totals below are the same expressions.
The problem I am having is that when I run the report, every thing works fine if the employee ony has one type of time for the report date range. So if all their time is REG or VAC then the totals work. But if they have a mix of time types, like REG and OT, then those sums show as errors.
Sample output =
As you can see, the second employee worked fine, but the first one did not. Any guess what is causing this?
Solved! Go to Solution.
Hi @David283,
I'm not so sure about the corresponding row value data types, perhaps you can try to add the VAL function to convert these values to numbers before aggregating.
=Sum(VAL(IIF(Fields!cr242_typeworked.Value="REG",Fields!cr242_hoursworked.Value,0)))
Regards,
Xiaoxin Sheng
Wow, ok, I have no idea why that worked, but it did. Thank you very much!
Hi @David283,
I'm not so sure about the corresponding row value data types, perhaps you can try to add the VAL function to convert these values to numbers before aggregating.
=Sum(VAL(IIF(Fields!cr242_typeworked.Value="REG",Fields!cr242_hoursworked.Value,0)))
Regards,
Xiaoxin Sheng
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
132 | |
90 | |
88 | |
64 | |
58 |
User | Count |
---|---|
203 | |
141 | |
107 | |
73 | |
70 |