Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
c5vette211
New Member

Data Usage Report

I have an excel file with thousands of questions in it. I am trying to find the trends in these questions and want to build a report that shows common phrases, or frequently used words. i.e. cell = question 'what is your annual revenue?'; 'what is your % of revenue by vertical?' 

 

With this data can Power BI return a report showing that there are 2 instances of the subject revenue being asked by a customer?

1 ACCEPTED SOLUTION
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @c5vette211,

 

Suppose there is a column listing all questions in your source dataset, as shown below.

1.PNG

 

I suggest you create an extra table to list some phrases or words that might be frequently used in questions, like below. Later, you should add this column into a slicer for users to choose.

2.PNG

 

Create measures:

check =
ISERROR (
    FIND (
        SELECTEDVALUE ( Dataset2[Selection] ),
        SELECTEDVALUE ( Dataset1[Question] )
    )
)

count =
CALCULATE (
    COUNT ( Dataset1[Question] ),
    FILTER ( ALLSELECTED ( Dataset1 ), [check] = FALSE () )
)

 

3.PNG

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @c5vette211,

 

Suppose there is a column listing all questions in your source dataset, as shown below.

1.PNG

 

I suggest you create an extra table to list some phrases or words that might be frequently used in questions, like below. Later, you should add this column into a slicer for users to choose.

2.PNG

 

Create measures:

check =
ISERROR (
    FIND (
        SELECTEDVALUE ( Dataset2[Selection] ),
        SELECTEDVALUE ( Dataset1[Question] )
    )
)

count =
CALCULATE (
    COUNT ( Dataset1[Question] ),
    FILTER ( ALLSELECTED ( Dataset1 ), [check] = FALSE () )
)

 

3.PNG

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors