Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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]
)
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
22 | |
7 | |
6 | |
6 | |
6 |
User | Count |
---|---|
27 | |
12 | |
10 | |
9 | |
6 |