Forum Discussion

homelander123's avatar
4 months ago
Solved

PowerBI Report builder

Hi Everyone,  I have a paginated report thats connected to a semantic model with a dataflow. I used the query designer to bring in the fields and parameters. The report has 50+ columns and 15 para...
  • vigneshkumarcvk's avatar
    vigneshkumarcvk
    4 months ago

    Hi homelander123, Yeah sure. 
    EVALUATE FILTER(SELECTCOLUMNS('Contacts',"Date", 'Contacts'[Date], "Name", 'Contacts'[Name], "ContactEmail", 'Contacts'[Contact Email], "Number", 'Contacts'[Number]), 'Contacts'[Date] >= @StartDateParm && ''Contacts'[Date] <= @EndDateParm && 'Contacts'[Name] = @NameParm
    You can use this way to keeping the dataset lean, and applying parameters directly and ensuring performance is better than pulling all the columns.