Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi Experts,
My source input: PDF, with images and tables, When I load, it is creating query for each page based on my selection.
As Images have details of each table (Unfortunately cannot get them) I want to extract table names not associated with any record
Say "ID_Area_CD_*" * is a wild card and I need to pull all such information in each query to form a unique and distinct list.
Please can you help. Thanks a lot
Solved! Go to Solution.
It's not completely clear to me what you are ultimately trying to achieve but maybe this will work as a custom column:
if Text.StartsWith([Column1], "ID_Area_CD_")
then Text.AfterDelimiter([Column1], "ID_Area_CD_")
else null
Hi @Anonymous
@AlexisOlson 's solution looks good. Does it solve this problem?
Best Regards,
Community Support Team _ Jing
Thank you @AlexisOlson I tried after your advise, I get a condition "False" and "True" and when I use Text.AfterDelimiter I get the string but some garbage from other columns. I tried to combine this with IF
IF( Text.StartsWith([Column1], "ID_Area_CD_") then Text.AfterDelimiter([Column1],"_") ? I am trying but getting syntax error.
It's not completely clear to me what you are ultimately trying to achieve but maybe this will work as a custom column:
if Text.StartsWith([Column1], "ID_Area_CD_")
then Text.AfterDelimiter([Column1], "ID_Area_CD_")
else null
Have you tried using a condition like Text.StartsWith([ColumnName], "ID_Area_CD_")?
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 7 | |
| 7 | |
| 5 | |
| 3 |