Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
While I am adding fields to Table visual it's showing me an error like "unable to convert an m query in table 'PRLINE' into a native souce query in power bi". I have queiried to oracle db and brought up a new table and when i'm trying to add those fields to Table Visual I am getting this error. Can anyone pls help me?
I'm in a Direct Query connection.
@Raghu_1753 , Are you writing a query into the advance option, if yes, there seems to be some issue.
or share first few lines of power query code
select f.failureremarkid,f.wonum,f.issueclosedate,f.siteid,f.description,regexp_replace(dbms_lob.substr(ldtext, 2000, 1 ), '<.*?>') as Workorder_longdescription,l.ldkey,
l.ldownertable from maximo.failureremark f LEFT OUTER JOIN
maximo.longdescription l on f.failureremarkid = l.ldkey
where ldownertable = 'FAILUREREMARK'
@amitchandak I have provided the query which I used in Advanced option. Will you pls check and provide you comments.