Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
I would like to use the Key Influencer Visual to analyze a text column as categorical metric as described in the official documentation (Analyze a metric that is categorical).
However, since I have calculation groups in my model, implicit measures are disabled by design which leads to the Key Influencer Visual not accepting a text column as metric to be analyzed.
The error message suggest to use a measure. But so far I havent been able to come up with a measure (or any other solution) to make the analysis work as intended (= the way it is shown in the documention).
The following files should be accessible using the following OneDrive link: PBI_KeyInf_customerfeedback
Hi @xChillout , Please let us know if your issue is solved. If it is, consider marking the answer that helped 'Accept as Solution', so others with similar queries can find it easily. If not, please share the details.
Thank you.
Hi @xChillout , Please let us know if your issue is solved. If it is, consider marking the answer that helped 'Accept as Solution', so others with similar queries can find it easily. If not, please share the details.
Thank you.
Hi @xChillout , Thank you for reaching out to the Microsoft Community Forum.
You're running into this issue because when you add calculation groups to your model, implicit measures like using a text column directly in the Analyze field are disabled. The Key Influencer visual depends on implicit measures to analyze raw categorical fields like your Rating column, so once calculation groups are introduced, Power BI expects an explicit measure instead.
To get things working again and still analyze something like “what factors make a Low rating more likely?”, you’ll need to create a new measure that acts as a binary flag, something Power BI can sum or average across rows.
Try below:
DAX
CopyEdit
Low Rating Flag =
CALCULATE(
SUMX(
'Customer Table',
IF('Customer Table'[Rating] = "Low", 1, 0)
)
)
Put this measure into the Analyze field of the Key Influencer visual. Add fields like Country-Region or others into the Explain by section.
If this helped solve the issue, please consider marking it 'Accept as Solution' so others with similar queries may find it more easily. If not, please share the details, always happy to help.
Thank you.
Hi @xChillout , Thank you for reaching out to the Microsoft Community Forum.
Please let us know if your issue is solved. If it is, consider marking the answers that helped 'Accept as Solution', so others with similar queries can find them easily. If not, please share the details.
Thank you.
@danextian @TomMartens
Thank you very much for engaging.
I have updated my original post with a link to sample files. @danextian in the original working file there is no aggregation/summarization set for the column. is that what you meant?
Hi @xChillout
Prior to creating calculation groups, what aggregation did you use for the text columns? That must be recreated using a measure.
Hey @xChillout ,
please consider creating a pbix containing sample data that still reflects your semantic model (tables, relationships, calculated columns, and measures). Upload the pbix to OneDrive, Google Drive, or Dropbox and share the link.
Regards,
Tom
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 48 | |
| 46 | |
| 41 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 70 | |
| 69 | |
| 32 | |
| 27 | |
| 26 |