User Profile
msarmento
Frequent Visitor
Joined 5 years ago
User Widgets
Contributions
Re: stuck in an issue
If I got your problem right, you could just create a calculated column to create a new index for DC by Sales ID and use it on a Matrix visual. Here is the DAX that I created for this column: DC Ordered = VAR CurrentSalesID = [SalesID] VAR CurrentDate = [Dateandtime] RETURN "DC - " & CALCULATE( DISTINCTCOUNT([DCNo]), FILTER( ALL('Table'), 'Table'[SalesID]=CurrentSalesID && 'Table'[Dateandtime] <= CurrentDate ) ) And here is a matrix using this new calculated column:1.8KViews0likes0CommentsRe: Dataflow refresh error Date/Datetime
Wrapping all columns with a DateTime.Date funcion did the trick for me. each DateTime.Date([DataEmissao]) >= DateTime.Date(#date(2020, 12, 1)) or [DataEmissao] = null and DateTime.Date([createdon]) >= DateTime.Date(#date(2020, 12, 1)) EDIT: Forget to mention, for me it started, out of the blue, on the 6/12. My company is in Brazil, but our Power BI tenant is in South Central US.2.6KViews0likes0CommentsRe: Third-party tools to explore Power BI data (Excel alternative)
I'm looking for an option exactly for those Power BI users that don't have an Excel license. I would imagine that, since Power BI has an open XMLA endpoint to connect to, there will be some tool to connect to a dataset and explore it's data. Even if it's not free.3.6KViews0likes0CommentsThird-party tools to explore Power BI data (Excel alternative)
Are there any other tools that connect to a Power BI Dataset for data viz / exploration? I've looked for tools that use the XMLA Endpoint but I can only find dev tools like, tabular editor, dax studio and so on. I think Tableau can connect to SSAS. But, more specifically, I'm looking for an alternative to Excel as a data exploration tool, as when using the "Analyze in Excel" option, but in a scenario where the person do not have a MS Office license.Solved3.7KViews0likes3Comments
Data Privacy
Microsoft Fabric Community and Privacy
To learn more about how we manage your data, please review the Microsoft Fabric Community Data Privacy guide.