Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
ElevonTeam
New Member

Filter in calculated column in direct query mode

I have a calculated column which filter data on the basis of other column. the calculation is working fine in import mode of source but failing in direct query mode.

 

Can anyone please suggest a workaround?

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @ElevonTeam,

 

>> the calculation is working fine in import mode of source but failing in direct query mode.

Current there are a few limitations to use calculation in directquery mode, so you can't use calculated column to achieve your requirement.

 

Reference link:

Using DirectQuery in Power BI

 

  • Limitations in calculated columns: Calculated columns are limited to being intra-row, as in, they can only refer to values of other columns of the same table, without the use of any aggregate functions. Additionally, the DAX scalar functions (such as LEFT()) that are allowed will be limited to those which can simply be pushed to the underlying source, hence will vary depending upon the exact capabilities of the source. Functions that are not supported will not be listed in autocomplete when authoring the DAX for a calculated column, and would result in an error if used.

 

>>Can anyone please suggest a workaround?

In my opinion, I'd like to suggest you use measure to instead.

 

Regards,

Xiaxoin Sheng

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi @ElevonTeam,

 

>> the calculation is working fine in import mode of source but failing in direct query mode.

Current there are a few limitations to use calculation in directquery mode, so you can't use calculated column to achieve your requirement.

 

Reference link:

Using DirectQuery in Power BI

 

  • Limitations in calculated columns: Calculated columns are limited to being intra-row, as in, they can only refer to values of other columns of the same table, without the use of any aggregate functions. Additionally, the DAX scalar functions (such as LEFT()) that are allowed will be limited to those which can simply be pushed to the underlying source, hence will vary depending upon the exact capabilities of the source. Functions that are not supported will not be listed in autocomplete when authoring the DAX for a calculated column, and would result in an error if used.

 

>>Can anyone please suggest a workaround?

In my opinion, I'd like to suggest you use measure to instead.

 

Regards,

Xiaxoin Sheng

v-caliao-msft
Microsoft Employee
Microsoft Employee

@ElevonTeam,

 

I have create a sample Power BI report which connect to SQL Server database by using DirectQuery mode, and then create a calculate column. I can use this column in Slicer and use it to filter data without any questions.

 

So could you please provide us more detail information, so that we can make further analysis. You can upload a pbix file to Onedrive or any web storage and share the link. Do mask sensitive data before uploading.

 

Regards,

Charlie Liao

Try recreating the the complete table brought through by direct mode using dax...

Create new table

XTable = SUMMARIZE(Table,Header a, Heade B,...

)

Then add a calclated column to it what you need.

The calculated column on a Direct query table becomes a measure rather than a calculated column

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.