Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Removing post.
Hi, @dochtang
MIN GUNBARREL X = CALCULATE(
MIN('All Wellbores'[Gunbarrel X]),
allselected('All Wellbores'[shortname])
)
or
MIN GUNBARREL X =
minx(
allselected('All Wellbores'),
'All Wellbores'[Gunbarrel X]
)
Removing post.
HI, @dochtang
try below code
MIN GUNBARREL X = CALCULATE(
MIN('All Wellbores'[Gunbarrel X]),
removefilters('All Wellbores'[shortname])
)
hello @dochtang , why not tru using minx?
MIN GUNBARREL X = MINX(ALL('All Wellbores'), 'All Wellbores'[Gunbarrel X])
Removing post
i see i used
ALL('All Wellbores')
try using only
'All Wellbores'
so
MIN GUNBARREL X = MINX('All Wellbores', 'All Wellbores'[Gunbarrel X])
Removing
can you please try
MIN GUNBARREL X =
MINX(
FILTER('All Wellbores', 'All Wellbores'[ID] = SELECTEDVALUE('YourSlicerTableName'[ID])),
'All Wellbores'[Gunbarrel X]
)
if it doesnt work please share some sample data
Removing
MIN GUNBARREL X =
VAR SelectedIDs = VALUES('YourSlicerTableName'[shortname])
RETURN
MINX(
FILTER('All Wellbores', 'All Wellbores'[shortname] IN SelectedIDs),
'All Wellbores'[Gunbarrel X]
)
User | Count |
---|---|
18 | |
18 | |
14 | |
14 | |
13 |
User | Count |
---|---|
17 | |
14 | |
11 | |
10 | |
8 |