Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hello guys,
i am currently working on a Report in PowerBi.
i got a Table which looks like this
And i need the following:
I need for latest completed column and where the type starts with "kpatch" the kuid and where Phase is "reboot pending" the KUID.
So i want a list of KUIDs where these filters apply and i have no clue how i should do that.
May someone give an advice how i can achieve this ?
Hi @mamabox22 ,
First create a column for getting the "kpatch" characters:
IF(
ISERROR( SEARCH("kpatch", Table[TYPE])
),
" ",
"kpatch"
)
Pull the kuid in a table visual and apply the filters from the filter pane on the visual.
Mark this as a solution, if it anwers your question. Kudos are always appreciated.
Thanks
@mamabox22 , based on what I got,
A new column like
maxx(filter(Table, [kuid] =earlier([kuid]) && [Phase] = "reboot pending" && search("kpatch",[type],,0) >0 ), [completed])
Hey,
this got me a lot closer but still isnt what i am looking for.
Sorry that i am not as specific as i should be.
I try to be as transparent as possible :).
I got multiple databases and i want a full report of my clients.
This is my Table at the moment.
And i want so see if a Client needs a reboot or not.
I can see that when i filter the KUID in the Table provided above.
What you gave me is the max time if the filters are applied.
So how can i get that to work.
i tried something like that:
Hopefully you can understand me. I am very sorry for my bad english. Tried an translate now.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 5 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 24 | |
| 12 | |
| 11 | |
| 9 | |
| 8 |