Forum Discussion
Drillthrough detail row expression error
- 2 years ago
Hi, Anonymous
If possible, consider removing the DetailRow expression from the metric, but this may not be ideal if you need the detail row for other purposes.
Depending on the complexity of drilling down into the details, consider using an alternative reporting method, such as creating a separate detail report in Power BI and linking to that report through Power BI's drill-down capabilities.
The following is a hypothetical example of adjusting a DetailRow expression to ensure that it does not conflict with a DRILLTHROUGH statement. Assume you have a DetailRow expression as shown below:EVALUATE SELECTCOLUMNS( FILTER( 'Sales', 'Sales'[ProductID] = SELECTEDVALUE('Product'[ProductID]) ), "OrderID", 'Sales'[OrderID], "Quantity", 'Sales'[Quantity], "Total", 'Sales'[Total] )Keep Excel and Power BI up to date. Considering that it affects common features, Microsoft may release a fix for this issue in a future update.
Best Regards,
hackcrr
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, Anonymous
If possible, consider removing the DetailRow expression from the metric, but this may not be ideal if you need the detail row for other purposes.
Depending on the complexity of drilling down into the details, consider using an alternative reporting method, such as creating a separate detail report in Power BI and linking to that report through Power BI's drill-down capabilities.
The following is a hypothetical example of adjusting a DetailRow expression to ensure that it does not conflict with a DRILLTHROUGH statement. Assume you have a DetailRow expression as shown below:
EVALUATE
SELECTCOLUMNS(
FILTER(
'Sales',
'Sales'[ProductID] = SELECTEDVALUE('Product'[ProductID])
),
"OrderID", 'Sales'[OrderID],
"Quantity", 'Sales'[Quantity],
"Total", 'Sales'[Total]
)Keep Excel and Power BI up to date. Considering that it affects common features, Microsoft may release a fix for this issue in a future update.
Best Regards,
hackcrr
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.