Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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_")?
Check out the July 2025 Power BI update to learn about new features.