Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
I previously had working Power BI content that executed without error. After upgrade to the December 2018 version, I am now receiving the error: "Function 'PLACEHOLDER' encountered a Text that exceeds the maximum allowable length." for a number of Column values that utilize MAXX and MINX functions on a FILTERED RELATED table. I cannot find any references that clearly identifies what raises this error. Can anyone please provide any insight on how to correct these errors?
The following is an example DAX statement that raises the error:
AttachChk_Consent RHIO = IF(
'Patient Chart'[Chart Status] = "Admitted",
IF(
MAXX( FILTER( RELATEDTABLE('_Chart Attachments by User'),'_Chart Attachments by User'[AttachKeyValue] = 'Patient Chart'[Chart Number] & "/RHIO Consent"),'_Chart Attachments by User'[AttachDateTime]) = 0,
1,
0),
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.