1

I have a perfectly working function:

TRANSPOSE(SPLIT(ArrayFormula(JOIN(" , , , , , ,";FILTER('REELsatış'!C2:C1500; 'REELsatış'!C2:C1500 <> "")));","))

It uses the data from the sheet REELsatış:

enter image description here

And gives me the following result on another sheet:

enter image description here

But it need it to use only the records of today. I mean that it shows 14.07.2021 today, and tomorrow it will show 15.07.2021. How can I put this condition in this complicated formula?

1
  • share a copy/sample of your sheet with example of desired result Commented Jul 14, 2021 at 17:52

1 Answer 1

1

try:

=TRANSPOSE(SPLIT(ARRAYFORMULA(JOIN(" , , , , , ,"; 
 FILTER('REELsatış'!C2:C1500; DATEVALUE('REELsatış'!C2:C1500) = DATEVALUE(TODAY())))); ","))
Sign up to request clarification or add additional context in comments.

2 Comments

Thank you for the fast answer) Unfortunately, it can't filter the dates with the timestamps. Is it possible to make it see the date in the timestamps?
The timestamps are important, they are like the ID of the line.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.