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.
Hi,
I am triying to use EXACT to check if Brands are different or not
I have a big table and i dont know how to check if the manufacturer in each category is unique.
I started with an old formula based on numbers and i think earlier does not belong here.
My idea is to check all the manufacturer in each category and give true or false.
error: EXACT needs at least two arguments i guess i need some kind of an array of all the different manufacturer for each category.
Category | Manufacturer | columns with dax |
Car | BMW | true |
Car | VW | true |
Car | GM | true |
Truck | Ford | true |
Truck | MAN | true |
Truck | Mercedes | true |
Bus | Bus1 | false |
Bus | Bus1 | false |
Bus | Bus2 | true |
@craftbeer , Try a new column like
new column =
var _cnt = countx(filter(Table, [Category] = earlier([Category]) && [Manufacturer] = earlier([Manufacturer])),[Manufacturer])
return
if(_cnt =1, true(), false())
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
19 | |
7 | |
6 | |
5 | |
5 |
User | Count |
---|---|
25 | |
10 | |
10 | |
9 | |
6 |