The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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.