When we run a SQL Server report, it gives an #Error for text field which computes the summation.
In that report we get the values from an SQL Server Analysis Service Cube and get the summation of those values considering the group.
In the Data warehouse we used the data type for the taken field as money.
Finally I was able to find the reason for the error occurs during the summation.
In the cube, we assign the value 0 for the field if it is null. Problem arises due to it.
When we change that to 0.00 instead of 0, it works.
I don't know any exact reason why it happens like that. It may be due to some problems while converting to the data type it may convert it to different data type like int and it gives errors while summation.
Anyway I think this will help you as well...
Business Intelligence, Data Warehousing, OLAP Implementation, Reporting and many more...
Add Row Number to a SQL Report contains Groups
We can add row number to a report which has groups by adding below expression to Row Group of the Row Number column
= RunningValue(Fields!CountColumn.Value, CountDistinct, "MyDatasetName")
To add Row Number to the Details Group, select the field of the Row Number in the Details Group and add the below expression.
= RowNumber(Nothing)
= RunningValue(Fields!CountColumn.Value, CountDistinct, "MyDatasetName")
To add Row Number to the Details Group, select the field of the Row Number in the Details Group and add the below expression.
= RowNumber(Nothing)
Subscribe to:
Posts (Atom)
tablename_WriteToDataDestination: Mashup Exception Data Source Error Couldn't refresh the entity...
Once a Dataflow is created and published on Fabric, got the below error while refreshing the Dataflow. tablename_ WriteToDataDestination: M...
-
In SQL Report Subscription, you may want to send the report with the link and you can do it by selecting Include Link value. But some time...
-
In SQL Server Analysis Services Cube, there may be a situation where we need to combine two related fact tables. This kind of a situation ma...
-
When I tried to connect to a SharePoint URL in dashboard designer options, it prompt a message saying "The URL is not available, does n...