Forum Discussion
Anan2609
4 years agoNew Member
DAX Measure to increase column value
Hello People,
I am newbie to power bi , i need to create to measure which increases LineTotal in the Sales table by 2%
here LineTotal is Column , I have attached screenshot ,Any help or suggestion i need to complete the task.
Thank u in advance
7 Replies
- ryan_mayuSuper User
do you mean creating a column?
column=LineTotal * 1.02
If this not what you want, pls provide the expected output.
- demouserRegular VisitorTargetSales = SUM([LineTotal]) * 2.00Use this..!
- BhavRegular Visitor
I am new dax learner, i don't know how we can use all dax in one measure, but i have created multiple measure and got result.
1. Total sales = SUM(Sales[LineTotal])
2. Total sales*2 = [total sales]*23. 2% of total sales = [Total sales*2]/1004. Target = [total sales]+[2% of total sales]