Forum Discussion
Paginated Reports Query
Anonymous wrote:
If i use the some aggregation column in the end it works.
If you are pulling in columns from multiple tables you should always include a measure otherwise you will just get a crossjoin of every possible combination of all the values which is not typically. You don't need to include the measure in your visualization, but having it in the query will allow the engine to correctly resolve the joins between the various tables.
I tried using a measure at the end in dataset, still same 2nd error
- bradsy3 years agoMicrosoft Employee
Can you try limiting the amout of data, put a Top N clause to see if this is because you are pulling too much data with your query? Also, you might have more information in the log file that could help diagnose. The file is at C:\Users\(you)\AppData\Local\Microsoft\Power BI Report Builder\15.7\Traces
- Anonymous3 years agoNot applicable
This is the code which got generated with in-built functions, I tried using top N, but the query is not getting validated.
Please guide me if i am missing anything.DEFINE
VAR vFromDateTableStartofMonth1 =
IF (
PATHLENGTH ( @FromDateTableStartofMonth ) = 1,
IF (
@FromDateTableStartofMonth <> "",
@FromDateTableStartofMonth,
BLANK ()
),
IF (
PATHITEM (
@FromDateTableStartofMonth,
2
) <> "",
PATHITEM (
@FromDateTableStartofMonth,
2
),
BLANK ()
)
)
VAR vFromDateTableStartofMonth1ALL =
PATHLENGTH ( @FromDateTableStartofMonth ) > 1
&& PATHITEM (
@FromDateTableStartofMonth,
1,
1
) < 1
VAR vToDateTableStartofMonth1 =
IF (
PATHLENGTH ( @ToDateTableStartofMonth ) = 1,
IF (
@ToDateTableStartofMonth <> "",
@ToDateTableStartofMonth,
BLANK ()
),
IF (
PATHITEM (
@ToDateTableStartofMonth,
2
) <> "",
PATHITEM (
@ToDateTableStartofMonth,
2
),
BLANK ()
)
)
VAR vToDateTableStartofMonth1ALL =
PATHLENGTH ( @ToDateTableStartofMonth ) > 1
&& PATHITEM (
@ToDateTableStartofMonth,
1,
1
) < 1
EVALUATE
SUMMARIZECOLUMNS (
'ResultData'[Sample],
'ResultData'[Date Sampled],
'ResultData'[Sampling Point],
'Analyte'[Analyte],
'ResultData'[Class],
'ResultData'[Result],
'ResultData'[Status],
'PRData'[PR],
FILTER (
VALUES ( 'DateTable'[Start of Month] ),
(
vFromDateTableStartofMonth1ALL
|| 'DateTable'[Start of Month]
>= DATEVALUE ( vFromDateTableStartofMonth1 )
+ TIMEVALUE ( vFromDateTableStartofMonth1 )
)
&& (
vToDateTableStartofMonth1ALL
|| 'DateTable'[Start of Month]
<= DATEVALUE ( vToDateTableStartofMonth1 )
+ TIMEVALUE ( vToDateTableStartofMonth1 )
)
),
RSCUSTOMDAXFILTER (
@SiteDEPT,
EqualToCondition,
[Site].[DEPT],
String
),
"TotalSamples", [TotalSamples]
)