Forum Discussion
VLOOKUP Applying for months
- 4 years ago
LuZeta_39 , sorry small correction
TEST = Maxx(FILTER('702-AUX WBS','702-AUX WBS'[CWP Cod] ='110-Actual SCH'[CWP] && '110-Actual SCH'[Fecha] = eomonth('110-Actual SCH'[Fecha],-1) +1 ),'702-AUX WBS'[CWP Total Labor])
Hope there are few start date of the month
LuZeta_39 , Using the date column of '110-Actual SCH' you can create a column like this
TEST = Maxx(filtwe('702-AUX WBS','702-AUX WBS'[CWP Cod] ='110-Actual SCH'[CWP] && '110-Actual SCH'[Date] = eomonth('110-Actual SCH'[Date],0) +1 ) '702-AUX WBS'[CWP Total Labor])
then create measure to so sum of this
sum('110-Actual SCH'[TEST])
Thanks for your help.
I tried
- amitchandak4 years ago
Super User
LuZeta_39 , sorry small correction
TEST = Maxx(FILTER('702-AUX WBS','702-AUX WBS'[CWP Cod] ='110-Actual SCH'[CWP] && '110-Actual SCH'[Fecha] = eomonth('110-Actual SCH'[Fecha],-1) +1 ),'702-AUX WBS'[CWP Total Labor])
Hope there are few start date of the month
- LuZeta_394 years agoFrequent Visitor
Problem solved. There was a double way relationship beetween aux and a table that has monthly data.
Thanks for your help.