Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
When creating a new table using Summarizecolumns, can I use a parameter?
09-27-2023
12:51 AM
Hi Guys,
I've created a new table based on an existing one using the following DAX:
- New Table =
SUMMARIZECOLUMNS (
'Original - wind cap factor'[Hourly Wind Max Gust 10m (km/h)],
'Original - wind cap factor'[Year],
FILTER (
'Original - wind cap factor',
'Original - wind cap factor'[Hourly Wind Max Gust 10m (km/h)] > 80))
This new table has 7 rows only - which is correct for what I need.
However, instead of having the fixed value in blue 80, I would like to use a parameter (numeric field) I've created in the visuals - so that the user could change the parameter as he needs and the numbers get recalculated based on that.
This parameter is created under the Modelling tab - New pArameter - Numeric Field.
The problem is that when I have it as fixed value 80 it works, but when I use the parameter, it does not work.
Below is the DAX I tried to use linking to the parameter:
- New Table =
SUMMARIZECOLUMNS (
'Original - wind cap factor'[Hourly Wind Max Gust 10m (km/h)],
'Original - wind cap factor'[Year],
FILTER (
'Original - wind cap factor',
'Original - wind cap factor'[Hourly Wind Max Gust 10m (km/h)]
> SELECTEDVALUE ( '.Wind speed'[Wind speed] )
)
)
When I use the above DAX linking to the parameter, the amount row of grows as it does not summarize the columns as I wanted.
Would you guys be able to help me make it work?
Below is a photo of how this parameter is shown for the users:
Thanks,
Diego
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2023
01:43 AM
Calculated tables do not interact with the filter context. You have to rely completely on measures.

Helpful resources
Top Kudoed Authors (Last Month)
User | Count |
---|---|
29 | |
16 | |
14 | |
13 | |
13 |