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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
giuliapiazza94
Helper IV
Helper IV

make variable constant

Hi guys, I have a problem. In selectedvalue "Ultimo reload" isn't a constant, so DATATABLE doesn't work.
Does exist a method to "convert" or save a variable costant?
 
Misura =
VAR UltimoReload = SELECTEDVALUE(Diagnostica[Ultimo reload])
VAR AnnoUltRel = YEAR(UltimoReload)
VAR MeseUltRel = FORMAT(UltimoReload,"MM/YYYY")
VAR NuovaTab =
DATATABLE("RifData",DATETIME,"RifMese",STRING,"RifAnno",INTEGER,{
{UltimoReload,MeseUltRel,AnnoUltRel}
})
RETURN NuovaTab
)
 
thank you all
1 ACCEPTED SOLUTION
AlexisOlson
Super User
Super User

Even if you could put a variable in your DATATABLE, a measure can only return a single value, not a table, so you'd still have a problem.

View solution in original post

2 REPLIES 2
AlexisOlson
Super User
Super User

Even if you could put a variable in your DATATABLE, a measure can only return a single value, not a table, so you'd still have a problem.

Thank you so much 😁 

I didn't understand how it works 😅

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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