Regular Expression Problem

Display all of the lines in a file that contain "Raspberry" followed later
in the line by the letter "a"

I tried: grep Raspberry*a filename

that didn't work

Anyone know a solution?

Almost...

grep "Raspberry.*a" somefile

Cheers
ZB