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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

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
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors