March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi All,
I'm an absolute newby to the world of Power BI.
I have an excel dataset I have imported into Power BI and with this dataset I need to remove a group of UserUuid which are in a second query I imported.
How is the best way for me to remove the UserUid's from the original dataset?
These are the two queries I have joined by UserUuid.
Any help is appreciated.
Regards
Solved! Go to Solution.
Hi @DeanMcK ,
Using DAX in the designer, you can create a calculated column to indicate exclusion of data from your report. Assuming Original Data Combined table is on the many side of the relationship, create a calculated column in this table:
ToExclude =
IF ( ISBLANK ( RELATED ( Remove_UserID[UserIdUuid] ) ), "Y", "N" )
Of course, this only indicates whether a row is to be excluded but does not really remove those rows from the dataset.
In the query editor, you may use the merge function to join the two tables. Select Inner from Join Kind to keep matching rows only.
Proud to be a Super User!
Hi @DeanMcK ,
Using DAX in the designer, you can create a calculated column to indicate exclusion of data from your report. Assuming Original Data Combined table is on the many side of the relationship, create a calculated column in this table:
ToExclude =
IF ( ISBLANK ( RELATED ( Remove_UserID[UserIdUuid] ) ), "Y", "N" )
Of course, this only indicates whether a row is to be excluded but does not really remove those rows from the dataset.
In the query editor, you may use the merge function to join the two tables. Select Inner from Join Kind to keep matching rows only.
Proud to be a Super User!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
User | Count |
---|---|
90 | |
89 | |
85 | |
73 | |
49 |
User | Count |
---|---|
169 | |
144 | |
90 | |
70 | |
58 |