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.
Hello Community,
Please review below and provide your guidance.
My data table has unstructured data and also Look up table.
Requirements:If lookup table words matches with Data Table then if should count words in a new table or in Data Table.
I am not able to figure it out how to procedd?
Once i have word count it is going to use on bar chart (Example:Bar for Financail Analysis=2,Food Analysis=1)
Data Table |
Comments |
Financial Analysis & Health Analysis is very Important |
Food Analysis & Financial Analysis is very Important |
Lookup Table |
Financial Analysis |
Health Analysis |
Food Analysis |
Result Table | |
Column_1 | Word_Count |
Financail Analysis | 2 |
Health Analysis | 1 |
Food Analysis | 1 |
Solved! Go to Solution.
add a measure into your Lookup Table
Measure =
var _lookupValue = MAX('Lookup Table'[Lookup Column])
RETURN
CALCULATE(SUMX('Data Table', IF(SEARCH(_lookupValue,'Data Table'[Comments],,0) > 0, 1, 0)))
add a measure into your Lookup Table
Measure =
var _lookupValue = MAX('Lookup Table'[Lookup Column])
RETURN
CALCULATE(SUMX('Data Table', IF(SEARCH(_lookupValue,'Data Table'[Comments],,0) > 0, 1, 0)))
Wow,Thank you so much for your awesome suggestions.I was trying on Data Table.Thank Again
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
75 | |
71 | |
38 | |
29 | |
26 |
User | Count |
---|---|
97 | |
96 | |
60 | |
44 | |
41 |