Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
ikarouscb
Frequent Visitor

Return text value based on index number

Hello Everybody 

 

i need your help, probably its more simple than i thought but i have tried diferent things with no success

 

i have a table of information, where the "Database downloaded",  adds in a column the report creation parameters,

 

ikarouscb_1-1716929746622.png

 

 

i just want to copy the first row text value with index no 1 into a measure so i can add it into a card so everybody can see it when they are analysing the dashboard

 

ikarouscb_2-1716929882036.png

 

i was trying to use this measure for it, but it only returns Blank result

 

Manit Time = MAXX(
                FILTER('Manit',Manit[Índice] = 1),
                Manit[Created]

 

2 ACCEPTED SOLUTIONS
nandic
Super User
Super User

@ikarouscb try using this formula for measure:

Text = CALCULATE(MIN(Table_Row[Created]),Table_Row[Indice]=1)

And this is even better because even if you filter out indice 1 on report, it will always show data:
Text = CALCULATE(MIN(Table_Row[Created]),ALL(Table_Row),Table_Row[Indice]=1)



nandic_0-1716930857010.png

 


Cheers,
Nemanja Andic

View solution in original post

ikarouscb
Frequent Visitor

Thank you very much @nandic this really work!!, one minor issue (i can live with ) is that when the data segmentatio filter selects something, it goes back to the blank value, is there any easy way to mantain that creation value no mater the segmentation filter data?

View solution in original post

2 REPLIES 2
ikarouscb
Frequent Visitor

Thank you very much @nandic this really work!!, one minor issue (i can live with ) is that when the data segmentatio filter selects something, it goes back to the blank value, is there any easy way to mantain that creation value no mater the segmentation filter data?

nandic
Super User
Super User

@ikarouscb try using this formula for measure:

Text = CALCULATE(MIN(Table_Row[Created]),Table_Row[Indice]=1)

And this is even better because even if you filter out indice 1 on report, it will always show data:
Text = CALCULATE(MIN(Table_Row[Created]),ALL(Table_Row),Table_Row[Indice]=1)



nandic_0-1716930857010.png

 


Cheers,
Nemanja Andic

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.