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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Employee
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
Employee
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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.