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
Is there a way to add a filter to the columns when creating a selected columns table, so for example filter the create table to not show rows that have blank in assett?
Test table=
SELECTCOLUMNS(
'INSTALL',
"ASSETT", 'INSTALL'[ASSETT],
"Date", 'INSTALL'[DATE],
"CODE",RELATED('ORDER'[CODE])
)
@1984 , You can achieve it using below function
TestTable =
SELECTCOLUMNS (
FILTER ( 'INSTALL', NOT ISBLANK ( 'INSTALL'[ASSETT] ) ),
"ASSETT", 'INSTALL'[ASSETT],
"Date", 'INSTALL'[DATE],
"CODE", RELATED ( 'ORDER'[CODE] )
)
Please accept as solution and give kudos if it helps
Proud to be a Super User! |
|
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 |