Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hi,
in my table I've a column timestamp with many rows of timestamps for about one month.
I want to build a filter/slicer, so that the user can choose if he want to group the table rows by day, by week or by month.
In my example I've two tables and each of them have the column timestamp. I created new group by options for each table. For the first group by 1 day and the second group by 7 days.
What I want to do is to have one table which contain all rows and a filter/slicer or somthing else with "group by" option. So when the user choose a "group by" option, the table get formated. Is something like that possible in Power BI Desktop/Service?
Solved! Go to Solution.
Hi @muchtar,
Based on my assumption, after adding two group bins, the source table is structured as below:
Based on above table, please new a calculated table.
Sample3_1 =
UNION (
SELECTCOLUMNS (
Sample3,
"Type", "Day Span",
"Date", Sample3[Day Span],
"Value", Sample3[Value]
),
SELECTCOLUMNS (
Sample3,
"Type", "Week Span",
"Date", Sample3[Week Span],
"Value", Sample3[Value]
)
)
Add Sample3_1[Type] into slicer, add [Date] and [Value] into table visual, the preview result is like:
Best regards,
Yuliana Gu
Hi @muchtar,
Based on my assumption, after adding two group bins, the source table is structured as below:
Based on above table, please new a calculated table.
Sample3_1 =
UNION (
SELECTCOLUMNS (
Sample3,
"Type", "Day Span",
"Date", Sample3[Day Span],
"Value", Sample3[Value]
),
SELECTCOLUMNS (
Sample3,
"Type", "Week Span",
"Date", Sample3[Week Span],
"Value", Sample3[Value]
)
)
Add Sample3_1[Type] into slicer, add [Date] and [Value] into table visual, the preview result is like:
Best regards,
Yuliana Gu
hi sir, if i have a column such as city or product type to filter the value then how to do ?
Hi,
thank you for your help, but when I do it like that, I'm getting following error;
"The expression refers to multiple columns. Multiple columns cannot be converted to a scalar value."
Do you know how to solve this?
Based on above table, please new a calculated table.
And how do I calculate a new table?
Hi @muchtar,
Click the "New Table" button under Modeling tab, paste the above provided DAX formula. Remember to replace the table name, column name with your own actual data.
Best regards,
Yuliana Gu
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.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 56 | |
| 47 | |
| 44 | |
| 20 | |
| 20 |
| User | Count |
|---|---|
| 72 | |
| 70 | |
| 34 | |
| 33 | |
| 31 |