Try to use below formula at report level:
=Sum(Sales ) Where (DayNumberOfMonth([Date])=1)
And if you want to get first of the month at Universe level, you can use below:
trunc(@Select(’ClassName\DateObject’),’MM’)
It will return you first day of that month.