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
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
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.